|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.web.servlet.mvc.multiaction.AbstractUrlMethodNameResolver
Abstract base class for URL-based MethodNameResolver implementations.
Provides infrastructure for mapping handlers to URLs and configurable URL lookup. For information on the latter, see alwaysUseFullPath property.
setAlwaysUseFullPath(boolean)
,
setUrlDecode(boolean)
Field Summary | |
protected org.apache.commons.logging.Log |
logger
|
Constructor Summary | |
AbstractUrlMethodNameResolver()
|
Method Summary | |
java.lang.String |
getHandlerMethodName(javax.servlet.http.HttpServletRequest request)
This implementation of getHandlerMethodName retrieves the URL path to use for lookup and delegates to getHandlerMethodNameForUrlPath. |
protected abstract java.lang.String |
getHandlerMethodNameForUrlPath(java.lang.String urlPath)
Return a method name that can handle this request, based on the given lookup path. |
void |
setAlwaysUseFullPath(boolean alwaysUseFullPath)
Set if URL lookup should always use full path within current servlet context. |
void |
setUrlDecode(boolean urlDecode)
Set if context path and request URI should be URL-decoded. |
void |
setUrlPathHelper(UrlPathHelper urlPathHelper)
Set the UrlPathHelper to use for resolution of lookup paths. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected final org.apache.commons.logging.Log logger
Constructor Detail |
public AbstractUrlMethodNameResolver()
Method Detail |
public void setAlwaysUseFullPath(boolean alwaysUseFullPath)
UrlPathHelper.setAlwaysUseFullPath(boolean)
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.
UrlPathHelper.setUrlDecode(boolean)
public void setUrlPathHelper(UrlPathHelper urlPathHelper)
Use this to override the default UrlPathHelper with a custom subclass, or to share common UrlPathHelper settings across multiple MethodNameResolvers and HandlerMappings.
AbstractUrlHandlerMapping.setUrlPathHelper(org.springframework.web.util.UrlPathHelper)
public final java.lang.String getHandlerMethodName(javax.servlet.http.HttpServletRequest request) throws NoSuchRequestHandlingMethodException
getHandlerMethodName
in interface MethodNameResolver
NoSuchRequestHandlingMethodException
- if no method
can be found for this URLprotected abstract java.lang.String getHandlerMethodNameForUrlPath(java.lang.String urlPath)
urlPath
- the URL path to use for lookup,
according to the settings in this class
getHandlerMethodName(javax.servlet.http.HttpServletRequest)
,
setAlwaysUseFullPath(boolean)
,
setUrlDecode(boolean)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |