Uses of Interface
org.springframework.util.RouteMatcher
Packages that use RouteMatcher
Package
Description
Basic abstractions for working with message handler methods.
Support classes for working with annotated message-handling methods with
non-blocking, reactive contracts.
Support for the RSocket protocol.
Support classes for working with annotated RSocket stream handling methods.
Miscellaneous utility classes, such as String manipulation utilities,
a Log4J configurer, and a state holder for paged lists of objects.
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 RouteMatcherModifierConstructorDescriptionDestinationPatternsMessageCondition
(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 RouteMatcherModifier and TypeMethodDescriptionMessageMappingMessageHandler.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 RouteMatcherModifier and TypeMethodDescriptionvoid
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 RouteMatcherModifier and TypeMethodDescriptionRSocketStrategies.routeMatcher()
Return the configuredRSocketStrategies.Builder.routeMatcher(RouteMatcher)
.Methods in org.springframework.messaging.rsocket with parameters of type RouteMatcherModifier and TypeMethodDescriptionRSocketStrategies.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 RouteMatcherModifier and TypeMethodDescriptionvoid
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 -
Uses of RouteMatcher in org.springframework.web.util.pattern
Classes in org.springframework.web.util.pattern that implement RouteMatcherModifier and TypeClassDescriptionclass
RouteMatcher
built onPathPatternParser
that usesPathContainer
andPathPattern
as parsed representations of routes and patterns.