Uses of Class
org.springframework.web.reactive.result.method.RequestMappingInfo
Package
Description
Infrastructure for handler method processing.
Infrastructure for annotation-based handler method processing.
-
Uses of RequestMappingInfo in org.springframework.web.reactive.result.method
Modifier and TypeMethodDescriptionRequestMappingInfo.Builder.build()
Build the RequestMappingInfo.RequestMappingInfo.combine
(RequestMappingInfo other) Combines "this" request mapping info (i.e.RequestMappingInfo.getMatchingCondition
(ServerWebExchange exchange) 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 RequestMappingInfo
RequestMappingInfoHandlerMapping.getMatchingMapping
(RequestMappingInfo info, ServerWebExchange exchange) 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.Modifier and TypeMethodDescriptionprotected Comparator<RequestMappingInfo>
RequestMappingInfoHandlerMapping.getMappingComparator
(ServerWebExchange exchange) Provide a Comparator to sort RequestMappingInfos matched to a request.Modifier and TypeMethodDescriptionRequestMappingInfo.combine
(RequestMappingInfo other) Combines "this" request mapping info (i.e.int
RequestMappingInfo.compareTo
(RequestMappingInfo other, ServerWebExchange exchange) Compares "this" info (i.e.RequestMappingInfoHandlerMapping.getDirectPaths
(RequestMappingInfo info) protected RequestMappingInfo
RequestMappingInfoHandlerMapping.getMatchingMapping
(RequestMappingInfo info, ServerWebExchange exchange) 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.protected void
RequestMappingInfoHandlerMapping.handleMatch
(RequestMappingInfo info, HandlerMethod handlerMethod, ServerWebExchange exchange) Expose URI template variables, matrix variables, and producible media types in the request.Modifier and TypeMethodDescriptionprotected HandlerMethod
RequestMappingInfoHandlerMapping.handleNoMatch
(Set<RequestMappingInfo> infos, ServerWebExchange exchange) Iterate all RequestMappingInfos once again, look if any match by URL at least and raise exceptions accordingly.ModifierConstructorDescriptionRequestMappingInfo
(RequestMappingInfo info, RequestCondition<?> customRequestCondition) Deprecated. -
Uses of RequestMappingInfo in org.springframework.web.reactive.result.method.annotation
Modifier and TypeMethodDescriptionprotected RequestMappingInfo
RequestMappingHandlerMapping.createRequestMappingInfo
(RequestMapping requestMapping, RequestCondition<?> customCondition) Create aRequestMappingInfo
from the supplied@RequestMapping
annotation, meta-annotation, or synthesized result of merging annotation attributes within an annotation hierarchy.protected RequestMappingInfo
RequestMappingHandlerMapping.createRequestMappingInfo
(HttpExchange httpExchange, RequestCondition<?> customCondition) Create aRequestMappingInfo
from the supplied@HttpExchange
annotation, meta-annotation, or synthesized result of merging annotation attributes within an annotation hierarchy.protected RequestMappingInfo
RequestMappingHandlerMapping.getMappingForMethod
(Method method, Class<?> handlerType) Uses type-level and method-level@RequestMapping
and@HttpExchange
annotations to create theRequestMappingInfo
.Modifier and TypeMethodDescriptionprotected CorsConfiguration
RequestMappingHandlerMapping.initCorsConfiguration
(Object handler, Method method, RequestMappingInfo mappingInfo) protected void
RequestMappingHandlerMapping.registerHandlerMethod
(Object handler, Method method, RequestMappingInfo mapping) void
RequestMappingHandlerMapping.registerMapping
(RequestMappingInfo mapping, Object handler, Method method)
RequestMappingInfo.Builder
viamutate()
.