Uses of Class
org.springframework.web.servlet.mvc.method.RequestMappingInfo
Packages that use RequestMappingInfo
Package
Description
Servlet-based infrastructure for handler method processing,
 building on the 
org.springframework.web.method package.MVC infrastructure for annotation-based handler method processing, building on the
 
org.springframework.web.method.annotation package.- 
Uses of RequestMappingInfo in org.springframework.web.servlet.mvc.methodMethods in org.springframework.web.servlet.mvc.method that return RequestMappingInfoModifier and TypeMethodDescriptionRequestMappingInfo.addCustomCondition(RequestCondition<?> customCondition) Create a new instance based on the current one, also adding the given custom condition.RequestMappingInfo.Builder.build()Build the RequestMappingInfo.RequestMappingInfo.combine(RequestMappingInfo other) Combine "this" request mapping info (i.e.RequestMappingInfo.getMatchingCondition(HttpServletRequest request) Checks if all conditions in this request mapping info match the provided request and returns a potentially new request mapping info with conditions tailored to the current request.protected RequestMappingInfoRequestMappingInfoHandlerMapping.getMatchingMapping(RequestMappingInfo info, HttpServletRequest request) Check if the given RequestMappingInfo matches the current request and return a (potentially new) instance with conditions that match the current request -- for example with a subset of URL patterns.Methods in org.springframework.web.servlet.mvc.method that return types with arguments of type RequestMappingInfoModifier and TypeMethodDescriptionprotected Comparator<RequestMappingInfo>RequestMappingInfoHandlerMapping.getMappingComparator(HttpServletRequest request) Provide a Comparator to sort RequestMappingInfos matched to a request.Methods in org.springframework.web.servlet.mvc.method with parameters of type RequestMappingInfoModifier and TypeMethodDescriptionRequestMappingInfo.combine(RequestMappingInfo other) Combine "this" request mapping info (i.e.intRequestMappingInfo.compareTo(RequestMappingInfo other, HttpServletRequest request) Compares "this" info (i.e.RequestMappingInfoHandlerMapping.getDirectPaths(RequestMappingInfo info) RequestMappingInfoHandlerMapping.getMappingPathPatterns(RequestMappingInfo info) Get the URL path patterns associated with the suppliedRequestMappingInfo.protected RequestMappingInfoRequestMappingInfoHandlerMapping.getMatchingMapping(RequestMappingInfo info, HttpServletRequest request) Check if the given RequestMappingInfo matches the current request and return a (potentially new) instance with conditions that match the current request -- for example with a subset of URL patterns.RequestMappingInfoHandlerMethodMappingNamingStrategy.getName(HandlerMethod handlerMethod, RequestMappingInfo mapping) protected voidRequestMappingInfoHandlerMapping.handleMatch(RequestMappingInfo info, String lookupPath, HttpServletRequest request) Expose URI template variables, matrix variables, and producible media types in the request.Method parameters in org.springframework.web.servlet.mvc.method with type arguments of type RequestMappingInfoModifier and TypeMethodDescriptionprotected HandlerMethodRequestMappingInfoHandlerMapping.handleNoMatch(Set<RequestMappingInfo> infos, String lookupPath, HttpServletRequest request) Iterate all RequestMappingInfo's once again, look if any match by URL at least and raise exceptions according to what doesn't match.Constructors in org.springframework.web.servlet.mvc.method with parameters of type RequestMappingInfoModifierConstructorDescriptionRequestMappingInfo(RequestMappingInfo info, RequestCondition<?> customRequestCondition) Deprecated.
- 
Uses of RequestMappingInfo in org.springframework.web.servlet.mvc.method.annotationMethods in org.springframework.web.servlet.mvc.method.annotation that return RequestMappingInfoModifier and TypeMethodDescriptionprotected RequestMappingInfoRequestMappingHandlerMapping.createRequestMappingInfo(RequestMapping requestMapping, RequestCondition<?> customCondition) Create aRequestMappingInfofrom the supplied@RequestMappingannotation, which is either a directly declared annotation, a meta-annotation, or the synthesized result of merging annotation attributes within an annotation hierarchy.protected RequestMappingInfoRequestMappingHandlerMapping.getMappingForMethod(Method method, Class<?> handlerType) Uses method and type-level @RequestMappingannotations to create the RequestMappingInfo.Methods in org.springframework.web.servlet.mvc.method.annotation with parameters of type RequestMappingInfoModifier and TypeMethodDescriptionprotected CorsConfigurationRequestMappingHandlerMapping.initCorsConfiguration(Object handler, Method method, RequestMappingInfo mappingInfo) protected voidRequestMappingHandlerMapping.registerHandlerMethod(Object handler, Method method, RequestMappingInfo mapping) Register a handler method and its unique mapping.voidRequestMappingHandlerMapping.registerMapping(RequestMappingInfo mapping, Object handler, Method method) 
addCustomCondition(RequestCondition).