Java org.springframework.web.servlet HandlerExecutionChain fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.web.servlet HandlerExecutionChain fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.web.servlet HandlerExecutionChain.

The text is from its open source code.

Constructor

Method

voidaddInterceptor(HandlerInterceptor interceptor)
voidapplyAfterConcurrentHandlingStarted(HttpServletRequest request, HttpServletResponse response)
Apply afterConcurrentHandlerStarted callback on mapped AsyncHandlerInterceptors.
voidapplyPostHandle(HttpServletRequest request, HttpServletResponse response, @Nullable ModelAndView mv)
Apply postHandle methods of registered interceptors.
booleanapplyPreHandle(HttpServletRequest request, HttpServletResponse response)
Apply preHandle methods of registered interceptors.
ObjectgetHandler()
Return the handler object to execute.
HandlerInterceptor[]getInterceptors()
Return the array of interceptors to apply (in the given order).
voidtriggerAfterCompletion(HttpServletRequest request, HttpServletResponse response, @Nullable Exception ex)
Trigger afterCompletion callbacks on the mapped HandlerInterceptors.