Package | Description |
---|---|
org.springframework.web.reactive.handler |
Provides HandlerMapping implementations including abstract base classes.
|
org.springframework.web.reactive.resource |
Support classes for serving static resources.
|
org.springframework.web.reactive.result.condition |
RequestCondition
and implementations for matching requests based on different criteria. |
org.springframework.web.util.pattern |
Dedicated support for matching HTTP request paths.
|
Modifier and Type | Method and Description |
---|---|
java.util.Map<PathPattern,java.lang.Object> |
AbstractUrlHandlerMapping.getHandlerMap()
Return a read-only view of registered path patterns and handlers which may
may be an actual handler instance or the bean name of lazily initialized
handler.
|
Modifier and Type | Method and Description |
---|---|
java.util.Map<PathPattern,ResourceWebHandler> |
ResourceUrlProvider.getHandlerMap()
Return a read-only view of the resource handler mappings either manually
configured or auto-detected from Spring configuration.
|
Modifier and Type | Method and Description |
---|---|
protected java.util.Collection<PathPattern> |
PatternsRequestCondition.getContent() |
java.util.Set<PathPattern> |
PatternsRequestCondition.getPatterns() |
Constructor and Description |
---|
PatternsRequestCondition(PathPattern... patterns)
Creates a new instance with the given URL patterns.
|
Constructor and Description |
---|
PatternsRequestCondition(java.util.List<PathPattern> patterns)
Creates a new instance with the given
Stream of URL patterns. |
Modifier and Type | Field and Description |
---|---|
static java.util.Comparator<PathPattern> |
PathPattern.SPECIFICITY_COMPARATOR
Comparator that sorts patterns by specificity as follows:
Null instances are last.
|
Modifier and Type | Method and Description |
---|---|
PathPattern |
PathPattern.combine(PathPattern pattern2string)
Combine this pattern with another.
|
PathPattern |
PathPatternParser.parse(java.lang.String pathPattern)
Process the path pattern content, a character at a time, breaking it into
path elements around separator boundaries and verifying the structure at each
stage.
|
Modifier and Type | Method and Description |
---|---|
PathPattern |
PathPattern.combine(PathPattern pattern2string)
Combine this pattern with another.
|
int |
PathPattern.compareTo(PathPattern otherPattern)
Compare this pattern with a supplied pattern: return -1,0,+1 if this pattern
is more specific, the same or less specific than the supplied pattern.
|