public class

ControllerClassNameHandlerMapping

extends AbstractControllerUrlHandlerMapping
java.lang.Object
   ↳ org.springframework.context.support.ApplicationObjectSupport
     ↳ org.springframework.web.context.support.WebApplicationObjectSupport
       ↳ org.springframework.web.servlet.handler.AbstractHandlerMapping
         ↳ org.springframework.web.servlet.handler.AbstractUrlHandlerMapping
           ↳ org.springframework.web.servlet.handler.AbstractDetectingUrlHandlerMapping
             ↳ org.springframework.web.servlet.mvc.support.AbstractControllerUrlHandlerMapping
               ↳ org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping

Class Overview

Implementation of HandlerMapping that follows a simple convention for generating URL path mappings from the class names of registered Controller beans as well as @Controller annotated beans.

For simple Controller implementations (those that handle a single request type), the convention is to take the short name of the Class, remove the 'Controller' suffix if it exists and return the remaining text, lower-cased, as the mapping, with a leading /. For example:

  • WelcomeController -> /welcome*
  • HomeController -> /home*

For MultiActionControllers and @Controller beans, a similar mapping is registered, except that all sub-paths are registered using the trailing wildcard pattern /*. For example:

  • WelcomeController -> /welcome, /welcome/*
  • CatalogController -> /catalog, /catalog/*

For MultiActionController it is often useful to use this mapping strategy in conjunction with the InternalPathMethodNameResolver.

Thanks to Warren Oliver for suggesting the "caseSensitive", "pathPrefix" and "basePackage" properties which have been added in Spring 2.5.

Summary

[Expand]
Inherited Constants
From interface org.springframework.core.Ordered
[Expand]
Inherited Fields
From class org.springframework.context.support.ApplicationObjectSupport
From interface org.springframework.web.servlet.HandlerMapping
Public Constructors
ControllerClassNameHandlerMapping()
Public Methods
void setBasePackage(String basePackage)
Set the base package to be used for generating path mappings, including all subpackages underneath this packages as path elements.
void setCaseSensitive(boolean caseSensitive)
Set whether to apply case sensitivity to the generated paths, e.g.
void setPathPrefix(String prefixPath)
Specify a prefix to prepend to the path generated from the controller name.
Protected Methods
String[] buildUrlsForHandler(String beanName, Class beanClass)
Abstract template method to be implemented by subclasses.
String[] generatePathMappings(Class beanClass)
Generate the actual URL paths for the given controller class.
[Expand]
Inherited Methods
From class org.springframework.web.servlet.mvc.support.AbstractControllerUrlHandlerMapping
From class org.springframework.web.servlet.handler.AbstractDetectingUrlHandlerMapping
From class org.springframework.web.servlet.handler.AbstractUrlHandlerMapping
From class org.springframework.web.servlet.handler.AbstractHandlerMapping
From class org.springframework.web.context.support.WebApplicationObjectSupport
From class org.springframework.context.support.ApplicationObjectSupport
From class java.lang.Object
From interface org.springframework.context.ApplicationContextAware
From interface org.springframework.core.Ordered
From interface org.springframework.web.context.ServletContextAware
From interface org.springframework.web.servlet.HandlerMapping

Public Constructors

public ControllerClassNameHandlerMapping ()

Public Methods

public void setBasePackage (String basePackage)

Set the base package to be used for generating path mappings, including all subpackages underneath this packages as path elements.

Default is null, using the short class name for the generated path, with the controller's package not represented in the path. Specify a base package like "com.mycompany.myapp" to include subpackages within that base package as path elements, e.g. generating the path "/mymodule/buyform" for the class name "com.mycompany.myapp.mymodule.BuyForm". Subpackage hierarchies are represented as individual path elements, e.g. "/mymodule/mysubmodule/buyform" for the class name "com.mycompany.myapp.mymodule.mysubmodule.BuyForm".

public void setCaseSensitive (boolean caseSensitive)

Set whether to apply case sensitivity to the generated paths, e.g. turning the class name "BuyForm" into "buyForm".

Default is "false", using pure lower case paths, e.g. turning the class name "BuyForm" into "buyform".

public void setPathPrefix (String prefixPath)

Specify a prefix to prepend to the path generated from the controller name.

Default is a plain slash ("/"). A path like "/mymodule" can be specified in order to have controller path mappings prefixed with that path, e.g. "/mymodule/buyform" instead of "/buyform" for the class name "BuyForm".

Protected Methods

protected String[] buildUrlsForHandler (String beanName, Class beanClass)

Abstract template method to be implemented by subclasses.

Parameters
beanName the name of the bean
beanClass the type of the bean
Returns
  • the URLs determined for the bean

protected String[] generatePathMappings (Class beanClass)

Generate the actual URL paths for the given controller class.

Subclasses may choose to customize the paths that are generated by overriding this method.

Parameters
beanClass the controller bean class to generate a mapping for
Returns
  • the URL path mappings for the given controller