Uses of Class
org.springframework.web.reactive.result.method.RequestMappingInfo
Packages that use RequestMappingInfo
Package
Description
Infrastructure for handler method processing.
Infrastructure for annotation-based handler method processing.
- 
Uses of RequestMappingInfo in org.springframework.web.reactive.result.methodSubclasses with type arguments of type RequestMappingInfo in org.springframework.web.reactive.result.methodModifier and TypeClassDescriptionclassAbstract base class for classes for whichRequestMappingInfodefines the mapping between a request and a handler method.Classes in org.springframework.web.reactive.result.method that implement interfaces with type arguments of type RequestMappingInfoMethods in org.springframework.web.reactive.result.method that return RequestMappingInfoModifier 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 @Nullable RequestMappingInfoRequestMappingInfoHandlerMapping.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.Methods in org.springframework.web.reactive.result.method that return types with arguments of type RequestMappingInfoModifier and TypeMethodDescriptionprotected Comparator<RequestMappingInfo> RequestMappingInfoHandlerMapping.getMappingComparator(ServerWebExchange exchange) Provide a Comparator to sort RequestMappingInfos matched to a request.Methods in org.springframework.web.reactive.result.method with parameters of type RequestMappingInfoModifier and TypeMethodDescriptionRequestMappingInfo.combine(RequestMappingInfo other) Combines "this" request mapping info (i.e.intRequestMappingInfo.compareTo(RequestMappingInfo other, ServerWebExchange exchange) Compares "this" info (i.e.RequestMappingInfoHandlerMapping.getDirectPaths(RequestMappingInfo info) protected @Nullable RequestMappingInfoRequestMappingInfoHandlerMapping.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 voidRequestMappingInfoHandlerMapping.handleMatch(RequestMappingInfo info, HandlerMethod handlerMethod, ServerWebExchange exchange) Expose URI template variables, matrix variables, and producible media types in the request.Method parameters in org.springframework.web.reactive.result.method with type arguments of type RequestMappingInfoModifier and TypeMethodDescriptionprotected @Nullable HandlerMethodRequestMappingInfoHandlerMapping.handleNoMatch(Set<RequestMappingInfo> infos, ServerWebExchange exchange) Iterate all RequestMappingInfos once again, look if any match by URL at least and raise exceptions accordingly.
- 
Uses of RequestMappingInfo in org.springframework.web.reactive.result.method.annotationMethods in org.springframework.web.reactive.result.method.annotation that return RequestMappingInfoModifier and TypeMethodDescriptionprotected RequestMappingInfoRequestMappingHandlerMapping.createRequestMappingInfo(RequestMapping requestMapping, @Nullable RequestCondition<?> customCondition) Create aRequestMappingInfofrom the supplied@RequestMappingannotation, meta-annotation, or synthesized result of merging annotation attributes within an annotation hierarchy.protected RequestMappingInfoRequestMappingHandlerMapping.createRequestMappingInfo(HttpExchange httpExchange, @Nullable RequestCondition<?> customCondition) Create aRequestMappingInfofrom the supplied@HttpExchangeannotation, meta-annotation, or synthesized result of merging annotation attributes within an annotation hierarchy.protected @Nullable RequestMappingInfoRequestMappingHandlerMapping.getMappingForMethod(Method method, Class<?> handlerType) Uses type-level and method-level@RequestMappingand@HttpExchangeannotations to create theRequestMappingInfo.Methods in org.springframework.web.reactive.result.method.annotation with parameters of type RequestMappingInfoModifier and TypeMethodDescriptionprotected @Nullable CorsConfigurationRequestMappingHandlerMapping.initCorsConfiguration(Object handler, Method method, RequestMappingInfo mappingInfo) protected voidRequestMappingHandlerMapping.registerHandlerMethod(Object handler, Method method, RequestMappingInfo mapping) voidRequestMappingHandlerMapping.registerMapping(RequestMappingInfo mapping, Object handler, Method method)