Uses of Interface
org.springframework.util.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
Modifier and TypeMethodDescriptionprotected RouteMatcher.Route
MessageMappingMessageHandler.getDestination
(Message<?> message) -
Uses of RouteMatcher.Route in org.springframework.messaging.handler.invocation.reactive
Modifier and TypeMethodDescriptionprotected abstract RouteMatcher.Route
AbstractMethodMessageHandler.getDestination
(Message<?> message) Extract the destination from the given message.Modifier 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
Modifier and TypeMethodDescriptionprotected void
RSocketMessageHandler.handleNoMatch
(RouteMatcher.Route destination, Message<?> message) -
Uses of RouteMatcher.Route in org.springframework.util
Modifier and TypeMethodDescriptionRouteMatcher.parseRoute
(String routeValue) Return a parsed representation of the given route.SimpleRouteMatcher.parseRoute
(String route) Modifier 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
Modifier and TypeMethodDescriptionPathPatternRouteMatcher.getPatternComparator
(RouteMatcher.Route route) boolean
PathPatternRouteMatcher.match
(String pattern, RouteMatcher.Route route) PathPatternRouteMatcher.matchAndExtract
(String pattern, RouteMatcher.Route route)