Package | Description |
---|---|
org.springframework.messaging.handler.annotation.reactive |
Support classes for working with annotated message-handling methods with
non-blocking, reactive contracts.
|
org.springframework.messaging.handler.invocation.reactive |
Common infrastructure for invoking message handler methods with non-blocking,
and reactive contracts.
|
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.
|
Modifier and Type | Method and Description |
---|---|
protected RouteMatcher.Route |
MessageMappingMessageHandler.getDestination(Message<?> message) |
Modifier and Type | Method and Description |
---|---|
protected abstract RouteMatcher.Route |
AbstractMethodMessageHandler.getDestination(Message<?> message)
Extract the destination from the given message.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractMethodMessageHandler.handleNoMatch(RouteMatcher.Route destination,
Message<?> message)
Invoked when no matching handler is found.
|
Modifier and Type | Method and Description |
---|---|
protected void |
RSocketMessageHandler.handleNoMatch(RouteMatcher.Route destination,
Message<?> message) |
Modifier and Type | Method and Description |
---|---|
RouteMatcher.Route |
SimpleRouteMatcher.parseRoute(String route) |
RouteMatcher.Route |
RouteMatcher.parseRoute(String routeValue)
Return a parsed representation of the given route.
|
Modifier and Type | Method and Description |
---|---|
Comparator<String> |
SimpleRouteMatcher.getPatternComparator(RouteMatcher.Route route) |
Comparator<String> |
RouteMatcher.getPatternComparator(RouteMatcher.Route route)
Given a route, return a
Comparator suitable for sorting patterns
in order of explicitness for that route, so that more specific patterns
come before more generic ones. |
boolean |
SimpleRouteMatcher.match(String pattern,
RouteMatcher.Route route) |
boolean |
RouteMatcher.match(String pattern,
RouteMatcher.Route route)
Match the given route against the given pattern.
|
Map<String,String> |
SimpleRouteMatcher.matchAndExtract(String pattern,
RouteMatcher.Route route) |
Map<String,String> |
RouteMatcher.matchAndExtract(String pattern,
RouteMatcher.Route route)
Match the pattern to the route and extract template variables.
|
Modifier and Type | Method and Description |
---|---|
RouteMatcher.Route |
PathPatternRouteMatcher.parseRoute(String routeValue) |
Modifier and Type | Method and Description |
---|---|
Comparator<String> |
PathPatternRouteMatcher.getPatternComparator(RouteMatcher.Route route) |
boolean |
PathPatternRouteMatcher.match(String pattern,
RouteMatcher.Route route) |
Map<String,String> |
PathPatternRouteMatcher.matchAndExtract(String pattern,
RouteMatcher.Route route) |