Uses of Interface
org.springframework.util.RouteMatcher.Route
Packages that use RouteMatcher.Route Package Description org.springframework.messaging.handler.annotation.reactive Support classes for working with annotated message-handling methods with non-blocking, reactive contracts.org.springframework.messaging.handler.invocation.reactive Common infrastructure for invoking message handler methods with non-blocking, and reactive contracts.org.springframework.messaging.rsocket.annotation.support Support classes for working with annotated RSocket stream handling methods.org.springframework.util Miscellaneous utility classes, such as String manipulation utilities, a Log4J configurer, and a state holder for paged lists of objects.org.springframework.web.util.pattern Dedicated support for matching HTTP request paths.Uses of RouteMatcher.Route in org.springframework.messaging.handler.annotation.reactive
Methods in org.springframework.messaging.handler.annotation.reactive that return RouteMatcher.Route Modifier and Type Method Description protected RouteMatcher.RouteMessageMappingMessageHandler. getDestination(Message<?> message)Uses of RouteMatcher.Route in org.springframework.messaging.handler.invocation.reactive
Methods in org.springframework.messaging.handler.invocation.reactive that return RouteMatcher.Route Modifier and Type Method Description protected abstract RouteMatcher.RouteAbstractMethodMessageHandler. getDestination(Message<?> message)Extract the destination from the given message.Methods in org.springframework.messaging.handler.invocation.reactive with parameters of type RouteMatcher.Route Modifier and Type Method Description protected voidAbstractMethodMessageHandler. handleNoMatch(RouteMatcher.Route destination, Message<?> message)Invoked when no matching handler is found.Uses of RouteMatcher.Route in org.springframework.messaging.rsocket.annotation.support
Methods in org.springframework.messaging.rsocket.annotation.support with parameters of type RouteMatcher.Route Modifier and Type Method Description protected voidRSocketMessageHandler. handleNoMatch(RouteMatcher.Route destination, Message<?> message)Uses of RouteMatcher.Route in org.springframework.util
Methods in org.springframework.util that return RouteMatcher.Route Modifier and Type Method Description RouteMatcher.RouteRouteMatcher. parseRoute(String routeValue)Return a parsed representation of the given route.RouteMatcher.RouteSimpleRouteMatcher. parseRoute(String route)Methods in org.springframework.util with parameters of type RouteMatcher.Route Modifier and Type Method Description Comparator<String>RouteMatcher. getPatternComparator(RouteMatcher.Route route)Given a route, return aComparatorsuitable for sorting patterns in order of explicitness for that route, so that more specific patterns come before more generic ones.Comparator<String>SimpleRouteMatcher. getPatternComparator(RouteMatcher.Route route)booleanRouteMatcher. match(String pattern, RouteMatcher.Route route)Match the given route against the given pattern.booleanSimpleRouteMatcher. match(String pattern, RouteMatcher.Route route)Map<String,String>RouteMatcher. matchAndExtract(String pattern, RouteMatcher.Route route)Match the pattern to the route and extract template variables.Map<String,String>SimpleRouteMatcher. matchAndExtract(String pattern, RouteMatcher.Route route)Uses of RouteMatcher.Route in org.springframework.web.util.pattern
Methods in org.springframework.web.util.pattern that return RouteMatcher.Route Modifier and Type Method Description RouteMatcher.RoutePathPatternRouteMatcher. parseRoute(String routeValue)Methods in org.springframework.web.util.pattern with parameters of type RouteMatcher.Route Modifier and Type Method Description Comparator<String>PathPatternRouteMatcher. getPatternComparator(RouteMatcher.Route route)booleanPathPatternRouteMatcher. match(String pattern, RouteMatcher.Route route)Map<String,String>PathPatternRouteMatcher. matchAndExtract(String pattern, RouteMatcher.Route route)