Uses of Interface
org.springframework.web.servlet.HandlerAdapter

Packages that use HandlerAdapter
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.annotation Support package for annotation-based Servlet MVC controllers. 
org.springframework.web.servlet.mvc.throwaway Throwaway command controllers are a WebWork/Maverick-style alternative to Spring's default Servlet/Struts-style Controller approach. 
 

Uses of HandlerAdapter in org.springframework.web.servlet
 

Methods in org.springframework.web.servlet that return HandlerAdapter
protected  HandlerAdapter DispatcherServlet.getHandlerAdapter(Object handler)
          Return the HandlerAdapter for this handler object.
 

Uses of HandlerAdapter in org.springframework.web.servlet.handler
 

Classes in org.springframework.web.servlet.handler that implement HandlerAdapter
 class SimpleServletHandlerAdapter
          Adapter to use the Servlet interface with the generic DispatcherServlet.
 

Uses of HandlerAdapter in org.springframework.web.servlet.mvc
 

Classes in org.springframework.web.servlet.mvc that implement HandlerAdapter
 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.
 

Uses of HandlerAdapter in org.springframework.web.servlet.mvc.annotation
 

Classes in org.springframework.web.servlet.mvc.annotation that implement HandlerAdapter
 class AnnotationMethodHandlerAdapter
          Implementation of the HandlerAdapter interface that maps handler methods based on HTTP paths, HTTP methods and request parameters expressed through the RequestMapping annotation.
 

Uses of HandlerAdapter in org.springframework.web.servlet.mvc.throwaway
 

Classes in org.springframework.web.servlet.mvc.throwaway that implement HandlerAdapter
 class ThrowawayControllerHandlerAdapter
          Deprecated. as of Spring 2.5, in favor of annotation-based controllers. To be removed in Spring 3.0.
 



Copyright © 2002-2008 The Spring Framework.