RequestMappingHandlerMapping
According to the documentation, RequestMappingHandlerMapping :
Creates RequestMappingInfo instances from @RequestMapping type and method annotations at the @Controller class level.
A RequestMappingInfo can be created using the constructor:
public RequestMappingInfo(String name, PatternsRequestCondition patterns, RequestMethodsRequestCondition methods, ParamsRequestCondition params, HeadersRequestCondition headers, ConsumesRequestCondition consumes, ProducesRequestCondition produces, RequestCondition<?> custom)
and presents a request with a set of conditions that must be matched.
BeanNameUrlHandlerMapping
BeanNameUrlHandlerMapping :
Implementing the HandlerMapping interface that maps URLs to beans with names starting with a slash ("/"),
and like AbstractDetectingUrlHandlerMapping :
Discovery of URL mappings for the beans handler by introspecting all the defined beans in the application context.
Ortomala lokni
source share