Uses of Class
org.springframework.web.servlet.mvc.condition.PatternsRequestCondition
Package
Description
Common MVC logic for matching incoming requests based on conditions.
Servlet-based infrastructure for handler method processing,
building on the
org.springframework.web.method
package.-
Uses of PatternsRequestCondition in org.springframework.web.servlet.mvc.condition
Modifier and TypeMethodDescriptionPatternsRequestCondition.combine
(PatternsRequestCondition other) Combine the patterns of the current and of the other instances as follows: If only one instance has patterns, use those.PatternsRequestCondition.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 viaPathMatcher.getPatternComparator(String)
.Modifier and TypeMethodDescriptionPatternsRequestCondition.combine
(PatternsRequestCondition other) Combine the patterns of the current and of the other instances as follows: If only one instance has patterns, use those.int
PatternsRequestCondition.compareTo
(PatternsRequestCondition other, HttpServletRequest request) Compare the two conditions based on the URL patterns they contain. -
Uses of PatternsRequestCondition in org.springframework.web.servlet.mvc.method
Modifier and TypeMethodDescriptionRequestMappingInfo.getPatternsCondition()
Return the patterns condition when String pattern matching viaPathMatcher
is in use.ModifierConstructorDescriptionRequestMappingInfo
(String name, PatternsRequestCondition patterns, RequestMethodsRequestCondition methods, ParamsRequestCondition params, HeadersRequestCondition headers, ConsumesRequestCondition consumes, ProducesRequestCondition produces, RequestCondition<?> custom) Deprecated.RequestMappingInfo
(PatternsRequestCondition patterns, RequestMethodsRequestCondition methods, ParamsRequestCondition params, HeadersRequestCondition headers, ConsumesRequestCondition consumes, ProducesRequestCondition produces, RequestCondition<?> custom) Deprecated.as of 5.3 in favor usingRequestMappingInfo.Builder
viaRequestMappingInfo.paths(String...)
.
RequestMappingInfo.Builder
viaRequestMappingInfo.paths(String...)
.