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 aRouteMatcherinstance.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 RouteMatcherMessageMappingMessageHandler. getRouteMatcher()Return theRouteMatcherused to map messages to handlers.protected RouteMatcherMessageMappingMessageHandler. obtainRouteMatcher()Obtain theRouteMatcherfor actual use.Methods in org.springframework.messaging.handler.annotation.reactive with parameters of type RouteMatcher Modifier and Type Method Description voidMessageMappingMessageHandler. setRouteMatcher(RouteMatcher routeMatcher)Set theRouteMatcherto 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 RouteMatcherRSocketStrategies. routeMatcher()Return the configuredRSocketStrategies.Builder.routeMatcher(RouteMatcher).Methods in org.springframework.messaging.rsocket with parameters of type RouteMatcher Modifier and Type Method Description RSocketStrategies.BuilderRSocketStrategies.Builder. routeMatcher(RouteMatcher routeMatcher)Configure aRouteMatcherfor 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 voidRSocketMessageHandler. setRouteMatcher(RouteMatcher routeMatcher)Set theRouteMatcherto 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 classSimpleRouteMatcherRouteMatcherthat 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 classPathPatternRouteMatcherRouteMatcherbuilt onPathPatternParserthat usesPathContainerandPathPatternas parsed representations of routes and patterns.