DispatcherServlet processes a handler in an execution chain, consisting of any number of interceptors, with the handler itself at the end. With this method, each interceptor can post-process an execution, getting applied in inverse order of the execution chain.
@param request current HTTP request
@param response current HTTP response
@param handler handler (or {@link HandlerMethod}) that started async execution, for type and/or instance examination
@param modelAndView the ModelAndView
that the handler returned(can also be null
)
@throws Exception in case of errors
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|