The Spring Framework

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

Packages that use HandlerMapping
org.springframework.web.servlet.handler Provides standard HandlerMapping implementations, including abstract base classes for custom implementations. 
org.springframework.web.servlet.handler.metadata This package enables automatic web controller targeting. 
org.springframework.web.servlet.mvc.annotation Support package for annotation-based Servlet MVC controllers. 
org.springframework.web.servlet.mvc.support Support package for MVC controllers. 
 

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

Classes in org.springframework.web.servlet.handler that implement HandlerMapping
 class AbstractDetectingUrlHandlerMapping
          Abstract implementation of the HandlerMapping interface, detecting URL mappings for handler beans through introspection of all defined beans in the application context.
 class AbstractHandlerMapping
          Abstract base class for HandlerMapping implementations.
 class AbstractUrlHandlerMapping
          Abstract base class for URL-mapped HandlerMapping implementations.
 class BeanNameUrlHandlerMapping
          Implementation of the HandlerMapping interface that map from URLs to beans with names that start with a slash ("/"), similar to how Struts maps URLs to action names.
 class SimpleUrlHandlerMapping
          Implementation of the HandlerMapping interface to map from URLs to request handler beans.
 

Uses of HandlerMapping in org.springframework.web.servlet.handler.metadata
 

Classes in org.springframework.web.servlet.handler.metadata that implement HandlerMapping
 class AbstractPathMapHandlerMapping
          Deprecated. as of Spring 2.5, in favor of annotation-based request mapping. To be removed in Spring 3.0.
 class CommonsPathMapHandlerMapping
          Deprecated. as of Spring 2.5, in favor of annotation-based request mapping. To be removed in Spring 3.0.
 

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

Classes in org.springframework.web.servlet.mvc.annotation that implement HandlerMapping
 class DefaultAnnotationHandlerMapping
          Implementation of the HandlerMapping interface that maps handlers based on HTTP paths expressed through the RequestMapping annotation at the type or method level.
 

Uses of HandlerMapping in org.springframework.web.servlet.mvc.support
 

Classes in org.springframework.web.servlet.mvc.support that implement HandlerMapping
 class ControllerClassNameHandlerMapping
          Implementation of HandlerMapping that follows a simple convention for generating URL path mappings from the class names of registered Controller and ThrowawayController beans.
 


The Spring Framework

Copyright © 2002-2008 The Spring Framework.