Package | Description |
---|---|
org.springframework.web.servlet.mvc.condition |
Common MVC logic for matching incoming requests based on conditions.
|
org.springframework.web.servlet.mvc.method |
Servlet-based infrastructure for handler method processing,
building on the
org.springframework.web.method package. |
Modifier and Type | Method and Description |
---|---|
PathPatternsRequestCondition |
PathPatternsRequestCondition.combine(PathPatternsRequestCondition other)
Returns a new instance with URL patterns from the current instance
("this") and the "other" instance as follows:
If there are patterns in both instances, combine the patterns in
"this" with the patterns in "other" using
PathPattern.combine(PathPattern) . |
PathPatternsRequestCondition |
PathPatternsRequestCondition.getMatchingCondition(HttpServletRequest request)
Checks if any of the patterns match the given request and returns an
instance that is guaranteed to contain matching patterns, sorted.
|
Modifier and Type | Method and Description |
---|---|
PathPatternsRequestCondition |
PathPatternsRequestCondition.combine(PathPatternsRequestCondition other)
Returns a new instance with URL patterns from the current instance
("this") and the "other" instance as follows:
If there are patterns in both instances, combine the patterns in
"this" with the patterns in "other" using
PathPattern.combine(PathPattern) . |
int |
PathPatternsRequestCondition.compareTo(PathPatternsRequestCondition other,
HttpServletRequest request)
Compare the two conditions based on the URL patterns they contain.
|
Modifier and Type | Method and Description |
---|---|
PathPatternsRequestCondition |
RequestMappingInfo.getPathPatternsCondition()
Return the patterns condition in use when parsed patterns are
enabled . |