Class UrlPathHelper
RequestDispatcher
includes and support for consistent URL decoding.
Used by AbstractUrlHandlerMapping
and RequestContext
for path matching
and/or URI determination.
- Since:
- 14.01.2004
- Author:
- Juergen Hoeller, Rob Harrop, Rossen Stoyanchev
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final UrlPathHelper
Shared, read-only instance with defaults.static final String
Name of Servlet request attribute that holds aresolved
lookupPath.static final UrlPathHelper
Shared, read-only instance for the full, encoded path. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiondecodeMatrixVariables
(HttpServletRequest request, MultiValueMap<String, String> vars) Decode the given matrix variables viadecodeRequestString(jakarta.servlet.http.HttpServletRequest, java.lang.String)
unlesssetUrlDecode(boolean)
is set totrue
in which case it is assumed the URL path from which the variables were extracted is already decoded through a call togetLookupPathForRequest(HttpServletRequest)
.decodePathVariables
(HttpServletRequest request, Map<String, String> vars) Decode the given URI path variables viadecodeRequestString(jakarta.servlet.http.HttpServletRequest, java.lang.String)
unlesssetUrlDecode(boolean)
is set totrue
in which case it is assumed the URL path from which the variables were extracted is already decoded through a call togetLookupPathForRequest(HttpServletRequest)
.decodeRequestString
(HttpServletRequest request, String source) Decode the given source string with a URLDecoder.protected String
determineEncoding
(HttpServletRequest request) Determine the encoding for the given request.getContextPath
(HttpServletRequest request) Return the context path for the given request, detecting an include request URL if called within a RequestDispatcher include.protected String
Return the default character encoding to use for URL decoding.Return the mapping lookup path for the given request, within the current servlet mapping if applicable, else within the web application.getLookupPathForRequest
(HttpServletRequest request, String name) Deprecated.Return the context path for the given request, detecting an include request URL if called within a RequestDispatcher include.Return the query string part of the given request's URL.Return the request URI for the given request.Return the servlet path for the given request, detecting an include request URL if called within a RequestDispatcher include.Return the path within the web application for the given request.Return the path within the servlet mapping for the given request, i.e.protected String
getPathWithinServletMapping
(HttpServletRequest request, String pathWithinApp) Return the path within the servlet mapping for the given request, i.e.getRequestUri
(HttpServletRequest request) Return the request URI for the given request, detecting an include request URL if called within a RequestDispatcher include.static String
getResolvedLookupPath
(ServletRequest request) Return a previouslyresolved
lookupPath.getServletPath
(HttpServletRequest request) Return the servlet path for the given request, regarding an include request URL if called within a RequestDispatcher include.boolean
Whether to decode the request URI when determining the lookup path.removeSemicolonContent
(String requestUri) Remove ";" (semicolon) content from the given request URI if the removeSemicolonContent property is set to "true".Resolve
the lookupPath and cache it in a request attribute with the keyPATH_ATTRIBUTE
for subsequent access viagetResolvedLookupPath(ServletRequest)
.void
setAlwaysUseFullPath
(boolean alwaysUseFullPath) Whether URL lookups should always use the full path within the current web application context, i.e.void
setDefaultEncoding
(String defaultEncoding) Set the default character encoding to use for URL decoding.void
setRemoveSemicolonContent
(boolean removeSemicolonContent) Set if ";" (semicolon) content should be stripped from the request URI.void
setUrlDecode
(boolean urlDecode) Whether the context path and request URI should be decoded -- both of which are returned undecoded by the Servlet API, in contrast to the servlet path.boolean
Whether configured to remove ";" (semicolon) content from the request URI.
-
Field Details
-
PATH_ATTRIBUTE
Name of Servlet request attribute that holds aresolved
lookupPath.- Since:
- 5.3
-
defaultInstance
Shared, read-only instance with defaults. The following apply:alwaysUseFullPath=false
urlDecode=true
removeSemicolon=true
defaultEncoding=
WebUtils.DEFAULT_CHARACTER_ENCODING
-
rawPathInstance
Shared, read-only instance for the full, encoded path. The following apply:alwaysUseFullPath=true
urlDecode=false
removeSemicolon=false
defaultEncoding=
WebUtils.DEFAULT_CHARACTER_ENCODING
-
-
Constructor Details
-
UrlPathHelper
public UrlPathHelper()
-
-
Method Details
-
setAlwaysUseFullPath
public void setAlwaysUseFullPath(boolean alwaysUseFullPath) Whether URL lookups should always use the full path within the current web application context, i.e. withinServletContext.getContextPath()
.If set to false the path within the current servlet mapping is used instead if applicable (i.e. in the case of a prefix based Servlet mapping such as "/myServlet/*").
By default this is set to "false".
-
setUrlDecode
public void setUrlDecode(boolean urlDecode) Whether the context path and request URI should be decoded -- both of which are returned undecoded by the Servlet API, in contrast to the servlet path.Either the request encoding or the default Servlet spec encoding (ISO-8859-1) is used when set to "true".
By default this is set to true.
Note: Be aware the servlet path will not match when compared to encoded paths. Therefore use of
urlDecode=false
is not compatible with a prefix-based Servlet mapping and likewise implies also settingalwaysUseFullPath=true
. -
isUrlDecode
public boolean isUrlDecode()Whether to decode the request URI when determining the lookup path.- Since:
- 4.3.13
-
setRemoveSemicolonContent
public void setRemoveSemicolonContent(boolean removeSemicolonContent) Set if ";" (semicolon) content should be stripped from the request URI.Default is "true".
-
shouldRemoveSemicolonContent
public boolean shouldRemoveSemicolonContent()Whether configured to remove ";" (semicolon) content from the request URI. -
setDefaultEncoding
Set the default character encoding to use for URL decoding. Default is ISO-8859-1, according to the Servlet spec.If the request specifies a character encoding itself, the request encoding will override this setting. This also allows for generically overriding the character encoding in a filter that invokes the
ServletRequest.setCharacterEncoding
method.- Parameters:
defaultEncoding
- the character encoding to use- See Also:
-
getDefaultEncoding
Return the default character encoding to use for URL decoding. -
resolveAndCacheLookupPath
Resolve
the lookupPath and cache it in a request attribute with the keyPATH_ATTRIBUTE
for subsequent access viagetResolvedLookupPath(ServletRequest)
.- Parameters:
request
- the current request- Returns:
- the resolved path
- Since:
- 5.3
-
getResolvedLookupPath
Return a previouslyresolved
lookupPath.- Parameters:
request
- the current request- Returns:
- the previously resolved lookupPath
- Throws:
IllegalArgumentException
- if the lookup path is not found- Since:
- 5.3
-
getLookupPathForRequest
@Deprecated public String getLookupPathForRequest(HttpServletRequest request, @Nullable String name) Deprecated.as of 5.3 in favor of usingresolveAndCacheLookupPath(HttpServletRequest)
andgetResolvedLookupPath(ServletRequest)
.Variant ofgetLookupPathForRequest(HttpServletRequest)
that automates checking for a previously computed lookupPath saved as a request attribute. The attribute is only used for lookup purposes.- Parameters:
request
- current HTTP requestname
- the request attribute that holds the lookupPath- Returns:
- the lookup path
- Since:
- 5.2
-
getLookupPathForRequest
Return the mapping lookup path for the given request, within the current servlet mapping if applicable, else within the web application.Detects include request URL if called within a RequestDispatcher include.
- Parameters:
request
- current HTTP request- Returns:
- the lookup path
- See Also:
-
getPathWithinServletMapping
Return the path within the servlet mapping for the given request, i.e. the part of the request's URL beyond the part that called the servlet, or "" if the whole URL has been used to identify the servlet.- Parameters:
request
- current HTTP request- Returns:
- the path within the servlet mapping, or ""
- See Also:
-
getPathWithinServletMapping
Return the path within the servlet mapping for the given request, i.e. the part of the request's URL beyond the part that called the servlet, or "" if the whole URL has been used to identify the servlet.Detects include request URL if called within a RequestDispatcher include.
E.g.: servlet mapping = "/*"; request URI = "/test/a" → "/test/a".
E.g.: servlet mapping = "/"; request URI = "/test/a" → "/test/a".
E.g.: servlet mapping = "/test/*"; request URI = "/test/a" → "/a".
E.g.: servlet mapping = "/test"; request URI = "/test" → "".
E.g.: servlet mapping = "/*.test"; request URI = "/a.test" → "".
- Parameters:
request
- current HTTP requestpathWithinApp
- a precomputed path within the application- Returns:
- the path within the servlet mapping, or ""
- Since:
- 5.2.9
- See Also:
-
getPathWithinApplication
Return the path within the web application for the given request.Detects include request URL if called within a RequestDispatcher include.
- Parameters:
request
- current HTTP request- Returns:
- the path within the web application
- See Also:
-
getRequestUri
Return the request URI for the given request, detecting an include request URL if called within a RequestDispatcher include.As the value returned by
request.getRequestURI()
is not decoded by the servlet container, this method will decode it.The URI that the web container resolves should be correct, but some containers like JBoss/Jetty incorrectly include ";" strings like ";jsessionid" in the URI. This method cuts off such incorrect appendices.
- Parameters:
request
- current HTTP request- Returns:
- the request URI
-
getContextPath
Return the context path for the given request, detecting an include request URL if called within a RequestDispatcher include.As the value returned by
request.getContextPath()
is not decoded by the servlet container, this method will decode it.- Parameters:
request
- current HTTP request- Returns:
- the context path
-
getServletPath
Return the servlet path for the given request, regarding an include request URL if called within a RequestDispatcher include.As the value returned by
request.getServletPath()
is already decoded by the servlet container, this method will not attempt to decode it.- Parameters:
request
- current HTTP request- Returns:
- the servlet path
-
getOriginatingRequestUri
Return the request URI for the given request. If this is a forwarded request, correctly resolves to the request URI of the original request. -
getOriginatingContextPath
Return the context path for the given request, detecting an include request URL if called within a RequestDispatcher include.As the value returned by
request.getContextPath()
is not decoded by the servlet container, this method will decode it.- Parameters:
request
- current HTTP request- Returns:
- the context path
-
getOriginatingServletPath
Return the servlet path for the given request, detecting an include request URL if called within a RequestDispatcher include.- Parameters:
request
- current HTTP request- Returns:
- the servlet path
-
getOriginatingQueryString
Return the query string part of the given request's URL. If this is a forwarded request, correctly resolves to the query string of the original request.- Parameters:
request
- current HTTP request- Returns:
- the query string
-
decodeRequestString
Decode the given source string with a URLDecoder. The encoding will be taken from the request, falling back to the default "ISO-8859-1".The default implementation uses
URLDecoder.decode(input, enc)
.- Parameters:
request
- current HTTP requestsource
- the String to decode- Returns:
- the decoded String
- See Also:
-
determineEncoding
Determine the encoding for the given request. Can be overridden in subclasses.The default implementation checks the request encoding, falling back to the default encoding specified for this resolver.
- Parameters:
request
- current HTTP request- Returns:
- the encoding for the request (never
null
) - See Also:
-
removeSemicolonContent
Remove ";" (semicolon) content from the given request URI if the removeSemicolonContent property is set to "true". Note that "jsessionid" is always removed.- Parameters:
requestUri
- the request URI string to remove ";" content from- Returns:
- the updated URI string
-
decodePathVariables
Decode the given URI path variables viadecodeRequestString(jakarta.servlet.http.HttpServletRequest, java.lang.String)
unlesssetUrlDecode(boolean)
is set totrue
in which case it is assumed the URL path from which the variables were extracted is already decoded through a call togetLookupPathForRequest(HttpServletRequest)
.- Parameters:
request
- current HTTP requestvars
- the URI variables extracted from the URL path- Returns:
- the same Map or a new Map instance
-
decodeMatrixVariables
public MultiValueMap<String,String> decodeMatrixVariables(HttpServletRequest request, MultiValueMap<String, String> vars) Decode the given matrix variables viadecodeRequestString(jakarta.servlet.http.HttpServletRequest, java.lang.String)
unlesssetUrlDecode(boolean)
is set totrue
in which case it is assumed the URL path from which the variables were extracted is already decoded through a call togetLookupPathForRequest(HttpServletRequest)
.- Parameters:
request
- current HTTP requestvars
- the URI variables extracted from the URL path- Returns:
- the same Map or a new Map instance
-
resolveAndCacheLookupPath(HttpServletRequest)
andgetResolvedLookupPath(ServletRequest)
.