Uses of Class
org.springframework.web.reactive.result.method.RequestMappingInfo
Packages that use RequestMappingInfo Package Description org.springframework.web.reactive.result.method Infrastructure for handler method processing.org.springframework.web.reactive.result.method.annotation Infrastructure for annotation-based handler method processing.Uses of RequestMappingInfo in org.springframework.web.reactive.result.method
Methods in org.springframework.web.reactive.result.method that return RequestMappingInfo Modifier and Type Method Description RequestMappingInfoRequestMappingInfo.Builder. build()Build the RequestMappingInfo.RequestMappingInfoRequestMappingInfo. combine(RequestMappingInfo other)Combines "this" request mapping info (i.e.RequestMappingInfoRequestMappingInfo. 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 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 RequestMappingInfo Modifier and Type Method Description protected 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 RequestMappingInfo Modifier and Type Method Description RequestMappingInfoRequestMappingInfo. combine(RequestMappingInfo other)Combines "this" request mapping info (i.e.intRequestMappingInfo. compareTo(RequestMappingInfo other, ServerWebExchange exchange)Compares "this" info (i.e.protected 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 RequestMappingInfo Modifier and Type Method Description protected HandlerMethodRequestMappingInfoHandlerMapping. handleNoMatch(Set<RequestMappingInfo> infos, ServerWebExchange exchange)Iterate all RequestMappingInfos once again, look if any match by URL at least and raise exceptions accordingly.Constructors in org.springframework.web.reactive.result.method with parameters of type RequestMappingInfo Constructor Description RequestMappingInfo(RequestMappingInfo info, RequestCondition<?> customRequestCondition)Re-create a RequestMappingInfo with the given custom request condition.Uses of RequestMappingInfo in org.springframework.web.reactive.result.method.annotation
Methods in org.springframework.web.reactive.result.method.annotation that return RequestMappingInfo Modifier and Type Method Description protected 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.reactive.result.method.annotation with parameters of type RequestMappingInfo Modifier and Type Method Description protected 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)