|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.web.util.UrlPathHelper
Helper class for URL path matching. Provides support for URL paths in ServletDispatcher includes, and support for URL decoding.
Used by AbstractUrlHandlerMapping, AbstractMethodNameResolver and RequestContext for path matching and/or URI determination.
AbstractUrlHandlerMapping
,
AbstractUrlMethodNameResolver
,
RequestContext
Field Summary | |
static java.lang.String |
INCLUDE_CONTEXT_PATH_REQUEST_ATTRIBUTE
|
static java.lang.String |
INCLUDE_SERVLET_PATH_REQUEST_ATTRIBUTE
|
static java.lang.String |
INCLUDE_URI_REQUEST_ATTRIBUTE
Standard servlet spec request attributes for include URI and paths. |
Constructor Summary | |
UrlPathHelper()
|
Method Summary | |
java.lang.String |
decodeRequestString(javax.servlet.http.HttpServletRequest request,
java.lang.String source)
Decode the given source string with a URLEncoder. |
protected java.lang.String |
determineEncoding(javax.servlet.http.HttpServletRequest request)
Determine the encoding for the given request. |
java.lang.String |
getContextPath(javax.servlet.http.HttpServletRequest request)
Return the context path for the given request, regarding an include request URL if called within a RequestDispatcher include. |
protected java.lang.String |
getDefaultEncoding()
Return the default character encoding to use for URL decoding. |
java.lang.String |
getLookupPathForRequest(javax.servlet.http.HttpServletRequest request)
Return the mapping lookup path for the given request, within the current servlet mapping if applicable, else within the web application. |
java.lang.String |
getPathWithinApplication(javax.servlet.http.HttpServletRequest request)
Return the path within the web application for the given request. |
java.lang.String |
getPathWithinServletMapping(javax.servlet.http.HttpServletRequest request)
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. |
java.lang.String |
getRequestUri(javax.servlet.http.HttpServletRequest request)
Return the request URI for the given request, regarding an include request URL if called within a RequestDispatcher include. |
java.lang.String |
getServletPath(javax.servlet.http.HttpServletRequest request)
Return the servlet path for the given request, regarding an include request URL if called within a RequestDispatcher include. |
void |
setAlwaysUseFullPath(boolean alwaysUseFullPath)
Set if URL lookup should always use full path within current servlet context. |
void |
setDefaultEncoding(java.lang.String defaultEncoding)
Set the default character encoding to use for URL decoding. |
void |
setUrlDecode(boolean urlDecode)
Set if context path and request URI should be URL-decoded. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final java.lang.String INCLUDE_URI_REQUEST_ATTRIBUTE
If included via a RequestDispatcher, the current resource will see the original request. Its own URI and paths are exposed as request attributes.
public static final java.lang.String INCLUDE_CONTEXT_PATH_REQUEST_ATTRIBUTE
public static final java.lang.String INCLUDE_SERVLET_PATH_REQUEST_ATTRIBUTE
Constructor Detail |
public UrlPathHelper()
Method Detail |
public void setAlwaysUseFullPath(boolean alwaysUseFullPath)
public void setUrlDecode(boolean urlDecode)
Uses either the request encoding or the default encoding according to the Servlet spec (ISO-8859-1).
Note: Setting this to true requires J2SE 1.4, as J2SE 1.3's URLDecoder class does not offer a way to specify the encoding.
getServletPath(javax.servlet.http.HttpServletRequest)
,
getContextPath(javax.servlet.http.HttpServletRequest)
,
getRequestUri(javax.servlet.http.HttpServletRequest)
,
WebUtils.DEFAULT_CHARACTER_ENCODING
,
ServletRequest.getCharacterEncoding()
,
URLDecoder.decode(String, String)
public void setDefaultEncoding(java.lang.String defaultEncoding)
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.
defaultEncoding
- the character encoding to usedetermineEncoding(javax.servlet.http.HttpServletRequest)
,
ServletRequest.getCharacterEncoding()
,
ServletRequest.setCharacterEncoding(java.lang.String)
,
WebUtils.DEFAULT_CHARACTER_ENCODING
protected java.lang.String getDefaultEncoding()
public java.lang.String getLookupPathForRequest(javax.servlet.http.HttpServletRequest request)
Regards include request URL if called within a RequestDispatcher include.
request
- current HTTP request
getPathWithinApplication(javax.servlet.http.HttpServletRequest)
,
getPathWithinServletMapping(javax.servlet.http.HttpServletRequest)
public java.lang.String getPathWithinServletMapping(javax.servlet.http.HttpServletRequest request)
Regards include request URL if called within a RequestDispatcher include.
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" -> "".
request
- current HTTP request
public java.lang.String getPathWithinApplication(javax.servlet.http.HttpServletRequest request)
Regards include request URL if called within a RequestDispatcher include.
request
- current HTTP request
public java.lang.String getServletPath(javax.servlet.http.HttpServletRequest request)
As the value returned by request.getServletPath() is already decoded by the servlet container, this method will not attempt to decode it.
request
- current HTTP request
public java.lang.String getContextPath(javax.servlet.http.HttpServletRequest request)
As the value returned by request.getContextPath() is not decoded by the servlet container, this method will decode it.
request
- current HTTP request
public java.lang.String getRequestUri(javax.servlet.http.HttpServletRequest request)
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.
request
- current HTTP request
public java.lang.String decodeRequestString(javax.servlet.http.HttpServletRequest request, java.lang.String source)
request
- current HTTP requestsource
- the String to decode
WebUtils.DEFAULT_CHARACTER_ENCODING
,
ServletRequest.getCharacterEncoding()
,
URLDecoder
protected java.lang.String determineEncoding(javax.servlet.http.HttpServletRequest request)
The default implementation checks the request encoding, falling back to the default encoding specified for this resolver.
request
- current HTTP request
ServletRequest.getCharacterEncoding()
,
setDefaultEncoding(java.lang.String)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |