spring-framework / org.springframework.web.servlet.mvc.method

Package org.springframework.web.servlet.mvc.method

Types

RequestMappingInfo

class RequestMappingInfo : RequestCondition<RequestMappingInfo>

A RequestCondition that consists of the following other conditions:

  1. PatternsRequestCondition
  2. RequestMethodsRequestCondition
  3. ParamsRequestCondition
  4. HeadersRequestCondition
  5. ConsumesRequestCondition
  6. ProducesRequestCondition
  7. RequestCondition (optional, custom request condition)

RequestMappingInfoHandlerMapping

abstract class RequestMappingInfoHandlerMapping : AbstractHandlerMethodMapping<RequestMappingInfo>

Abstract base class for classes for which RequestMappingInfo defines the mapping between a request and a handler method.

RequestMappingInfoHandlerMethodMappingNamingStrategy

open class RequestMappingInfoHandlerMethodMappingNamingStrategy : HandlerMethodMappingNamingStrategy<RequestMappingInfo>

A org.springframework.web.servlet.handler.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.