Class HandlerFunctionAdapter
- java.lang.Object
- org.springframework.web.servlet.function.support.HandlerFunctionAdapter
- All Implemented Interfaces:
Ordered,HandlerAdapter
public class HandlerFunctionAdapter extends Object implements HandlerAdapter, Ordered
HandlerAdapterimplementation that supportsHandlerFunctions.- Since:
- 5.2
- Author:
- Arjen Poutsma
Field Summary
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
Constructor Summary
Constructors Constructor Description HandlerFunctionAdapter()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetLastModified(HttpServletRequest request, Object handler)Same contract as for HttpServlet'sgetLastModifiedmethod.intgetOrder()Get the order value of this object.ModelAndViewhandle(HttpServletRequest servletRequest, HttpServletResponse servletResponse, Object handler)Use the given handler to handle this request.voidsetOrder(int order)Specify the order value for this HandlerAdapter bean.booleansupports(Object handler)Given a handler instance, return whether or not thisHandlerAdaptercan support it.
Constructor Detail
HandlerFunctionAdapter
public HandlerFunctionAdapter()
Method Detail
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:
Ordered.getOrder()
getOrder
public int getOrder()
Description copied from interface:OrderedGet 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-startupvalues).Same order values will result in arbitrary sort positions for the affected objects.
- Specified by:
getOrderin interfaceOrdered- Returns:
- the order value
- See Also:
Ordered.HIGHEST_PRECEDENCE,Ordered.LOWEST_PRECEDENCE
supports
public boolean supports(Object handler)
Description copied from interface:HandlerAdapterGiven a handler instance, return whether or not thisHandlerAdaptercan support it. Typical HandlerAdapters will base the decision on the handler type. HandlerAdapters will usually only support one handler type each.A typical implementation:
return (handler instanceof MyHandler);- Specified by:
supportsin interfaceHandlerAdapter- Parameters:
handler- the handler object to check- Returns:
- whether or not this object can use the given handler
handle
@Nullable public ModelAndView handle(HttpServletRequest servletRequest, HttpServletResponse servletResponse, Object handler) throws Exception
Description copied from interface:HandlerAdapterUse the given handler to handle this request. The workflow that is required may vary widely.- Specified by:
handlein interfaceHandlerAdapter- Parameters:
servletRequest- current HTTP requestservletResponse- current HTTP responsehandler- the handler to use. This object must have previously been passed to thesupportsmethod of this interface, which must have returnedtrue.- Returns:
- a ModelAndView object with the name of the view and the required model data, or
nullif the request has been handled directly - Throws:
Exception- in case of errors
getLastModified
public long getLastModified(HttpServletRequest request, Object handler)
Description copied from interface:HandlerAdapterSame contract as for HttpServlet'sgetLastModifiedmethod. Can simply return -1 if there's no support in the handler class.- Specified by:
getLastModifiedin interfaceHandlerAdapter- Parameters:
request- current HTTP requesthandler- the handler to use- Returns:
- the lastModified value for the given handler
- See Also:
HttpServlet.getLastModified(javax.servlet.http.HttpServletRequest),LastModified.getLastModified(javax.servlet.http.HttpServletRequest)