public abstract class AbstractHandlerMethodAdapter extends WebContentGenerator implements HandlerAdapter, Ordered
HandlerAdapter implementations that support
 handlers of type HandlerMethod.HEADER_CACHE_CONTROL, METHOD_GET, METHOD_HEAD, METHOD_POSTloggerHIGHEST_PRECEDENCE, LOWEST_PRECEDENCE| Constructor and Description | 
|---|
| AbstractHandlerMethodAdapter() | 
| Modifier and Type | Method and Description | 
|---|---|
| long | getLastModified(HttpServletRequest request,
               Object handler)This implementation expects the handler to be an  HandlerMethod. | 
| protected abstract long | getLastModifiedInternal(HttpServletRequest request,
                       HandlerMethod handlerMethod)Deprecated. 
 as of 5.3.9 along with
  LastModified. | 
| int | getOrder()Get the order value of this object. | 
| ModelAndView | handle(HttpServletRequest request,
      HttpServletResponse response,
      Object handler)This implementation expects the handler to be an  HandlerMethod. | 
| 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. | 
| boolean | supports(Object handler)This implementation expects the handler to be an  HandlerMethod. | 
| protected abstract boolean | supportsInternal(HandlerMethod handlerMethod)Given a handler method, return whether or not this adapter can support it. | 
applyCacheControl, applyCacheSeconds, applyCacheSeconds, cacheForSeconds, cacheForSeconds, checkAndPrepare, checkAndPrepare, checkRequest, getAllowHeader, getCacheControl, getCacheSeconds, getSupportedMethods, getVaryByRequestHeaders, isAlwaysMustRevalidate, isRequireSession, isUseCacheControlHeader, isUseCacheControlNoStore, isUseExpiresHeader, prepareResponse, preventCaching, setAlwaysMustRevalidate, setCacheControl, setCacheSeconds, setRequireSession, setSupportedMethods, setUseCacheControlHeader, setUseCacheControlNoStore, setUseExpiresHeader, setVaryByRequestHeadersgetServletContext, getTempDir, getWebApplicationContext, initApplicationContext, initServletContext, isContextRequired, setServletContextgetApplicationContext, getMessageSourceAccessor, initApplicationContext, obtainApplicationContext, requiredContextClass, setApplicationContextpublic void setOrder(int order)
The default value is Ordered.LOWEST_PRECEDENCE, meaning non-ordered.
Ordered.getOrder()public int getOrder()
OrderedHigher 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.
getOrder in interface OrderedOrdered.HIGHEST_PRECEDENCE, 
Ordered.LOWEST_PRECEDENCEpublic final boolean supports(Object handler)
HandlerMethod.supports in interface HandlerAdapterhandler - the handler instance to checkprotected abstract boolean supportsInternal(HandlerMethod handlerMethod)
handlerMethod - the handler method to check@Nullable public final ModelAndView handle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception
HandlerMethod.handle in interface HandlerAdapterrequest - current HTTP requestresponse - current HTTP responsehandler - the handler to use. This object must have previously been passed
 to the supports method of this interface, which must have
 returned true.null if the request has been handled directlyException - in case of errors@Nullable protected abstract ModelAndView handleInternal(HttpServletRequest request, HttpServletResponse response, HandlerMethod handlerMethod) throws Exception
request - current HTTP requestresponse - current HTTP responsehandlerMethod - handler method to use. This object must have previously been passed to the
 supportsInternal(HandlerMethod) this interface, which must have returned true.null if the request has been handled directlyException - in case of errorspublic final long getLastModified(HttpServletRequest request, Object handler)
HandlerMethod.getLastModified in interface HandlerAdapterrequest - current HTTP requesthandler - the handler to use@Deprecated protected abstract long getLastModifiedInternal(HttpServletRequest request, HandlerMethod handlerMethod)
LastModified.HttpServlet.getLastModified(HttpServletRequest).request - current HTTP requesthandlerMethod - handler method to use