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(javax.servlet.http.HttpServletRequest request)
Return the HandlerExecutionChain for this request.
|
HandlerExecutionChain |
HandlerMapping.getHandler(javax.servlet.http.HttpServletRequest request)
Return a handler and any interceptors for this request.
|
protected HandlerExecutionChain |
DispatcherServlet.getHandler(javax.servlet.http.HttpServletRequest request,
boolean cache)
Deprecated.
as of Spring 3.0.4, in favor of
DispatcherServlet.getHandler(javax.servlet.http.HttpServletRequest) ,
with this method's cache attribute now effectively getting ignored |
Modifier and Type | Method and Description |
---|---|
HandlerExecutionChain |
AbstractHandlerMapping.getHandler(javax.servlet.http.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,
javax.servlet.http.HttpServletRequest request)
Build a
HandlerExecutionChain for the given handler, including
applicable interceptors. |
Copyright © 2015. All rights reserved.