Class AbstractHandlerMethodAdapter
java.lang.Object
org.springframework.context.support.ApplicationObjectSupport
org.springframework.web.context.support.WebApplicationObjectSupport
org.springframework.web.servlet.support.WebContentGenerator
org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter
- All Implemented Interfaces:
Aware
,ApplicationContextAware
,Ordered
,ServletContextAware
,HandlerAdapter
- Direct Known Subclasses:
RequestMappingHandlerAdapter
public abstract class AbstractHandlerMethodAdapter
extends WebContentGenerator
implements HandlerAdapter, Ordered
Abstract base class for
HandlerAdapter
implementations that support
handlers of type HandlerMethod
.- Since:
- 3.1
- Author:
- Arjen Poutsma
-
Field Summary
Fields inherited from class org.springframework.web.servlet.support.WebContentGenerator
HEADER_CACHE_CONTROL, METHOD_GET, METHOD_HEAD, METHOD_POST
Fields inherited from class org.springframework.context.support.ApplicationObjectSupport
logger
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal long
getLastModified
(HttpServletRequest request, Object handler) This implementation expects the handler to be anHandlerMethod
.protected abstract long
getLastModifiedInternal
(HttpServletRequest request, HandlerMethod handlerMethod) Deprecated.int
getOrder()
Get the order value of this object.final ModelAndView
handle
(HttpServletRequest request, HttpServletResponse response, Object handler) This implementation expects the handler to be anHandlerMethod
.protected abstract ModelAndView
handleInternal
(HttpServletRequest request, HttpServletResponse response, HandlerMethod handlerMethod) Use the given handler method to handle the request.void
setOrder
(int order) Specify the order value for this HandlerAdapter bean.final boolean
This implementation expects the handler to be anHandlerMethod
.protected abstract boolean
supportsInternal
(HandlerMethod handlerMethod) Given a handler method, return whether this adapter can support it.Methods inherited from class org.springframework.web.servlet.support.WebContentGenerator
applyCacheControl, applyCacheSeconds, applyCacheSeconds, cacheForSeconds, cacheForSeconds, checkAndPrepare, checkRequest, getAllowHeader, getCacheControl, getCacheSeconds, getSupportedMethods, getVaryByRequestHeaders, isAlwaysMustRevalidate, isRequireSession, isUseCacheControlHeader, isUseCacheControlNoStore, isUseExpiresHeader, prepareResponse, preventCaching, setAlwaysMustRevalidate, setCacheControl, setCacheSeconds, setRequireSession, setSupportedMethods, setUseCacheControlHeader, setUseCacheControlNoStore, setUseExpiresHeader, setVaryByRequestHeaders
Methods inherited from class org.springframework.web.context.support.WebApplicationObjectSupport
getServletContext, getTempDir, getWebApplicationContext, initApplicationContext, initServletContext, isContextRequired, setServletContext
Methods inherited from class org.springframework.context.support.ApplicationObjectSupport
getApplicationContext, getMessageSourceAccessor, initApplicationContext, obtainApplicationContext, requiredContextClass, setApplicationContext
-
Constructor Details
-
AbstractHandlerMethodAdapter
public AbstractHandlerMethodAdapter()
-
-
Method Details
-
setOrder
public void setOrder(int order) Specify the order value for this HandlerAdapter bean.The default value is
Ordered.LOWEST_PRECEDENCE
, meaning non-ordered.- See Also:
-
getOrder
public int getOrder()Description copied from interface:Ordered
Get the order value of this object.Higher values are interpreted as lower priority. As a consequence, the object with the lowest value has the highest priority (somewhat analogous to Servlet
load-on-startup
values).Same order values will result in arbitrary sort positions for the affected objects.
-
supports
This implementation expects the handler to be anHandlerMethod
.- Specified by:
supports
in interfaceHandlerAdapter
- Parameters:
handler
- the handler instance to check- Returns:
- whether this adapter can adapt the given handler
-
supportsInternal
Given a handler method, return whether this adapter can support it.- Parameters:
handlerMethod
- the handler method to check- Returns:
- whether this adapter can adapt the given method
-
handle
@Nullable public final ModelAndView handle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception This implementation expects the handler to be anHandlerMethod
.- Specified by:
handle
in interfaceHandlerAdapter
- Parameters:
request
- current HTTP requestresponse
- current HTTP responsehandler
- the handler to use. This object must have previously been passed to thesupports
method of this interface, which must have returnedtrue
.- Returns:
- a ModelAndView object with the name of the view and the required
model data, or
null
if the request has been handled directly - Throws:
Exception
- in case of errors
-
handleInternal
@Nullable protected abstract ModelAndView handleInternal(HttpServletRequest request, HttpServletResponse response, HandlerMethod handlerMethod) throws Exception Use the given handler method to handle the request.- Parameters:
request
- current HTTP requestresponse
- current HTTP responsehandlerMethod
- handler method to use. This object must have previously been passed to thesupportsInternal(HandlerMethod)
this interface, which must have returnedtrue
.- Returns:
- a ModelAndView object with the name of the view and the required model data,
or
null
if the request has been handled directly - Throws:
Exception
- in case of errors
-
getLastModified
This implementation expects the handler to be anHandlerMethod
.- Specified by:
getLastModified
in interfaceHandlerAdapter
- Parameters:
request
- current HTTP requesthandler
- the handler to use- Returns:
- the lastModified value for the given handler
-
getLastModifiedInternal
@Deprecated protected abstract long getLastModifiedInternal(HttpServletRequest request, HandlerMethod handlerMethod) Deprecated.as of 5.3.9 along withLastModified
.Same contract as forHttpServlet.getLastModified(HttpServletRequest)
.- Parameters:
request
- current HTTP requesthandlerMethod
- handler method to use- Returns:
- the lastModified value for the given handler
-
LastModified
.