| Package | Description | 
|---|---|
| org.springframework.web.servlet | Provides servlets that integrate with the application context
 infrastructure, and the core interfaces and classes for the
 Spring web MVC framework. | 
| org.springframework.web.servlet.handler | Provides standard HandlerMapping implementations,
 including abstract base classes for custom implementations. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected HandlerExecutionChain | DispatcherServlet. getHandler(HttpServletRequest request)Return the HandlerExecutionChain for this request. | 
| HandlerExecutionChain | HandlerMapping. getHandler(HttpServletRequest request)Return a handler and any interceptors for this request. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected HandlerExecutionChain | AbstractHandlerMapping. getCorsHandlerExecutionChain(HttpServletRequest request,
                            HandlerExecutionChain chain,
                            CorsConfiguration config)Update the HandlerExecutionChain for CORS-related handling. | 
| HandlerExecutionChain | AbstractHandlerMapping. getHandler(HttpServletRequest request)Look up a handler for the given request, falling back to the default
 handler if no specific one is found. | 
| protected HandlerExecutionChain | AbstractHandlerMapping. getHandlerExecutionChain(Object handler,
                        HttpServletRequest request)Build a  HandlerExecutionChainfor the given handler, including
 applicable interceptors. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected HandlerExecutionChain | AbstractHandlerMapping. getCorsHandlerExecutionChain(HttpServletRequest request,
                            HandlerExecutionChain chain,
                            CorsConfiguration config)Update the HandlerExecutionChain for CORS-related handling. |