Uses of Interface
org.springframework.util.RouteMatcher.Route
Packages that use RouteMatcher.Route
Package
Description
Support classes for working with annotated message-handling methods with
non-blocking, reactive contracts.
Common infrastructure for invoking message handler methods with non-blocking,
and reactive contracts.
Support classes for working with annotated RSocket stream handling methods.
Miscellaneous utility classes, such as utilities for working with strings,
classes, collections, reflection, etc.
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.RouteModifier and TypeMethodDescriptionprotected RouteMatcher.Route
MessageMappingMessageHandler.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.RouteModifier and TypeMethodDescriptionprotected abstract RouteMatcher.Route
AbstractMethodMessageHandler.getDestination
(Message<?> message) Extract the destination from the given message.Methods in org.springframework.messaging.handler.invocation.reactive with parameters of type RouteMatcher.RouteModifier and TypeMethodDescriptionprotected void
AbstractMethodMessageHandler.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.RouteModifier and TypeMethodDescriptionprotected void
RSocketMessageHandler.handleNoMatch
(RouteMatcher.Route destination, Message<?> message) -
Uses of RouteMatcher.Route in org.springframework.util
Methods in org.springframework.util that return RouteMatcher.RouteModifier and TypeMethodDescriptionRouteMatcher.parseRoute
(String routeValue) Return a parsed representation of the given route.SimpleRouteMatcher.parseRoute
(String route) Methods in org.springframework.util with parameters of type RouteMatcher.RouteModifier and TypeMethodDescriptionRouteMatcher.getPatternComparator
(RouteMatcher.Route route) Given a route, return aComparator
suitable for sorting patterns in order of explicitness for that route, so that more specific patterns come before more generic ones.SimpleRouteMatcher.getPatternComparator
(RouteMatcher.Route route) boolean
RouteMatcher.match
(String pattern, RouteMatcher.Route route) Match the given route against the given pattern.boolean
SimpleRouteMatcher.match
(String pattern, RouteMatcher.Route route) RouteMatcher.matchAndExtract
(String pattern, RouteMatcher.Route route) Match the pattern to the route and extract template variables.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.RouteMethods in org.springframework.web.util.pattern with parameters of type RouteMatcher.RouteModifier and TypeMethodDescriptionPathPatternRouteMatcher.getPatternComparator
(RouteMatcher.Route route) boolean
PathPatternRouteMatcher.match
(String pattern, RouteMatcher.Route route) PathPatternRouteMatcher.matchAndExtract
(String pattern, RouteMatcher.Route route)