Interface HandlerMethodMappingNamingStrategy<T>
- All Known Implementing Classes:
RequestMappingInfoHandlerMethodMappingNamingStrategy
public interface HandlerMethodMappingNamingStrategy<T>
A strategy for assigning a name to a handler method's mapping.The strategy can be configured on
AbstractHandlerMethodMapping. It is used to assign a name to the mapping of every registered handler method. The names can then be queried viaAbstractHandlerMethodMapping#getHandlerMethodsForMappingName.Applications can build a URL to a controller method by name with the help of the static method
MvcUriComponentsBuilder#fromMappingNameor in JSPs through the "mvcUrl" function registered by the Spring tag library.- Since:
- 4.1
- Author:
- Rossen Stoyanchev
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName(HandlerMethod handlerMethod, T mapping)Determine the name for the given HandlerMethod and mapping.
Method Detail
getName
String getName(HandlerMethod handlerMethod, T mapping)
Determine the name for the given HandlerMethod and mapping.- Parameters:
handlerMethod- the handler methodmapping- the mapping- Returns:
- the name