类 RequestMappingInfoHandlerMethodMappingNamingStrategy

java.lang.Object
cn.taketoday.web.handler.method.RequestMappingInfoHandlerMethodMappingNamingStrategy
所有已实现的接口:
HandlerMethodMappingNamingStrategy<RequestMappingInfo>

public class RequestMappingInfoHandlerMethodMappingNamingStrategy extends Object implements HandlerMethodMappingNamingStrategy<RequestMappingInfo>
A HandlerMethodMappingNamingStrategy for RequestMappingInfo-based handler method mappings. If the RequestMappingInfo name attribute is set, its value is used. Otherwise the name is based on the capital letters of the class name, followed by "#" as a separator, and the method name. For example "TC#getFoo" for a class named TestController with method getFoo.
从以下版本开始:
4.0
作者:
Rossen Stoyanchev