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.
|
org.springframework.web.servlet.mvc |
Standard controller implementations for the Servlet MVC framework that comes with
Spring.
|
org.springframework.web.servlet.mvc.method |
Servlet-based infrastructure for handler method processing,
building on the
org.springframework.web.method package. |
org.springframework.web.servlet.mvc.method.annotation |
MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation package. |
Modifier and Type | Method and Description |
---|---|
protected HandlerAdapter |
DispatcherServlet.getHandlerAdapter(java.lang.Object handler)
Return the HandlerAdapter for this handler object.
|
Modifier and Type | Class and Description |
---|---|
class |
SimpleServletHandlerAdapter
Adapter to use the Servlet interface with the generic DispatcherServlet.
|
Modifier and Type | Class and Description |
---|---|
class |
HttpRequestHandlerAdapter
Adapter to use the plain
HttpRequestHandler
interface with the generic DispatcherServlet . |
class |
SimpleControllerHandlerAdapter
Adapter to use the plain
Controller workflow interface with
the generic DispatcherServlet . |
Modifier and Type | Class and Description |
---|---|
class |
AbstractHandlerMethodAdapter
Abstract base class for
HandlerAdapter implementations that support
handlers of type HandlerMethod . |
Modifier and Type | Class and Description |
---|---|
class |
RequestMappingHandlerAdapter
Extension of
AbstractHandlerMethodAdapter that supports
RequestMapping annotated HandlerMethod RequestMapping annotated HandlerMethods . |