Uses of Interface
org.springframework.util.RouteMatcher
Packages that use RouteMatcher Package Description org.springframework.messaging.handler Basic abstractions for working with message handler methods.org.springframework.messaging.handler.annotation.reactive Support classes for working with annotated message-handling methods with non-blocking, reactive contracts.org.springframework.messaging.rsocket Support for the RSocket protocol.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 in org.springframework.messaging.handler
Constructors in org.springframework.messaging.handler with parameters of type RouteMatcher Constructor Description DestinationPatternsMessageCondition(String[] patterns, RouteMatcher routeMatcher)
Constructor with patterns and aRouteMatcher
instance.Uses of RouteMatcher in org.springframework.messaging.handler.annotation.reactive
Methods in org.springframework.messaging.handler.annotation.reactive that return RouteMatcher Modifier and Type Method Description RouteMatcher
MessageMappingMessageHandler. getRouteMatcher()
Return theRouteMatcher
used to map messages to handlers.protected RouteMatcher
MessageMappingMessageHandler. obtainRouteMatcher()
Obtain theRouteMatcher
for actual use.Methods in org.springframework.messaging.handler.annotation.reactive with parameters of type RouteMatcher Modifier and Type Method Description void
MessageMappingMessageHandler. setRouteMatcher(RouteMatcher routeMatcher)
Set theRouteMatcher
to use for mapping messages to handlers based on the route patterns they're configured with.Uses of RouteMatcher in org.springframework.messaging.rsocket
Methods in org.springframework.messaging.rsocket that return RouteMatcher Modifier and Type Method Description RouteMatcher
RSocketStrategies. routeMatcher()
Return the configuredRSocketStrategies.Builder.routeMatcher(RouteMatcher)
.Methods in org.springframework.messaging.rsocket with parameters of type RouteMatcher Modifier and Type Method Description RSocketStrategies.Builder
RSocketStrategies.Builder. routeMatcher(RouteMatcher routeMatcher)
Configure aRouteMatcher
for matching routes to message handlers based on route patterns.Uses of RouteMatcher in org.springframework.messaging.rsocket.annotation.support
Methods in org.springframework.messaging.rsocket.annotation.support with parameters of type RouteMatcher Modifier and Type Method Description void
RSocketMessageHandler. setRouteMatcher(RouteMatcher routeMatcher)
Set theRouteMatcher
to use for mapping messages to handlers based on the route patterns they're configured with.Uses of RouteMatcher in org.springframework.util
Classes in org.springframework.util that implement RouteMatcher Modifier and Type Class Description class
SimpleRouteMatcher
RouteMatcher
that delegates to aPathMatcher
.Uses of RouteMatcher in org.springframework.web.util.pattern
Classes in org.springframework.web.util.pattern that implement RouteMatcher Modifier and Type Class Description class
PathPatternRouteMatcher
RouteMatcher
built onPathPatternParser
that usesPathContainer
andPathPattern
as parsed representations of routes and patterns.