public class PatternsRequestCondition extends AbstractRequestCondition<PatternsRequestCondition>
In contrast to PathPatternsRequestCondition which uses parsed
 PathPatterns, this condition does String pattern matching via
 AntPathMatcher.
| Constructor and Description | 
|---|
| PatternsRequestCondition(String... patterns)Constructor with URL patterns which are prepended with "/" if necessary. | 
| PatternsRequestCondition(String[] patterns,
                        boolean useTrailingSlashMatch,
                        PathMatcher pathMatcher)Variant of  PatternsRequestCondition(String...)with aPathMatcherand flag for matching trailing slashes. | 
| PatternsRequestCondition(String[] patterns,
                        UrlPathHelper urlPathHelper,
                        PathMatcher pathMatcher,
                        boolean useTrailingSlashMatch)Deprecated. 
 as of 5.3 in favor of
  PatternsRequestCondition(String[], boolean, PathMatcher). | 
| PatternsRequestCondition(String[] patterns,
                        UrlPathHelper urlPathHelper,
                        PathMatcher pathMatcher,
                        boolean useSuffixPatternMatch,
                        boolean useTrailingSlashMatch)Deprecated. 
 as of 5.2.4. See class-level note in
  RequestMappingHandlerMappingon the deprecation of path extension config options. | 
| PatternsRequestCondition(String[] patterns,
                        UrlPathHelper urlPathHelper,
                        PathMatcher pathMatcher,
                        boolean useSuffixPatternMatch,
                        boolean useTrailingSlashMatch,
                        List<String> fileExtensions)Deprecated. 
 as of 5.2.4. See class-level note in
  RequestMappingHandlerMappingon the deprecation of path extension config options. | 
| Modifier and Type | Method and Description | 
|---|---|
| PatternsRequestCondition | combine(PatternsRequestCondition 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  PathMatcher.combine(String, String). | 
| int | compareTo(PatternsRequestCondition other,
         HttpServletRequest request)Compare the two conditions based on the URL patterns they contain. | 
| protected Collection<String> | getContent()Return the discrete items a request condition is composed of. | 
| Set<String> | getDirectPaths()Return the mapping paths that are not patterns. | 
| 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 via
  PathMatcher.getPatternComparator(String). | 
| List<String> | getMatchingPatterns(String lookupPath)Find the patterns matching the given lookup path. | 
| Set<String> | getPatterns() | 
| protected String | getToStringInfix()The notation to use when printing discrete items of content. | 
| boolean | isEmptyPathMapping()Whether the condition is the "" (empty path) mapping. | 
equals, hashCode, isEmpty, toStringpublic PatternsRequestCondition(String... patterns)
patterns - 0 or more URL patterns; no patterns results in an empty
 path "" mapping which matches all requests.public PatternsRequestCondition(String[] patterns, boolean useTrailingSlashMatch, @Nullable PathMatcher pathMatcher)
PatternsRequestCondition(String...) with a
 PathMatcher and flag for matching trailing slashes.@Deprecated public PatternsRequestCondition(String[] patterns, @Nullable UrlPathHelper urlPathHelper, @Nullable PathMatcher pathMatcher, boolean useTrailingSlashMatch)
PatternsRequestCondition(String[], boolean, PathMatcher).PatternsRequestCondition(String...) with a
 UrlPathHelper and a PathMatcher, and whether to match
 trailing slashes.
 As of 5.3 the path is obtained through the static method
 UrlPathHelper.getResolvedLookupPath(javax.servlet.ServletRequest) and a UrlPathHelper
 does not need to be passed in.
@Deprecated public PatternsRequestCondition(String[] patterns, @Nullable UrlPathHelper urlPathHelper, @Nullable PathMatcher pathMatcher, boolean useSuffixPatternMatch, boolean useTrailingSlashMatch)
RequestMappingHandlerMapping
 on the deprecation of path extension config options.PatternsRequestCondition(String...) with a
 UrlPathHelper and a PathMatcher, and flags for matching
 with suffixes and trailing slashes.
 As of 5.3 the path is obtained through the static method
 UrlPathHelper.getResolvedLookupPath(javax.servlet.ServletRequest) and a UrlPathHelper
 does not need to be passed in.
@Deprecated public PatternsRequestCondition(String[] patterns, @Nullable UrlPathHelper urlPathHelper, @Nullable PathMatcher pathMatcher, boolean useSuffixPatternMatch, boolean useTrailingSlashMatch, @Nullable List<String> fileExtensions)
RequestMappingHandlerMapping
 on the deprecation of path extension config options.PatternsRequestCondition(String...) with a
 UrlPathHelper and a PathMatcher, and flags for matching
 with suffixes and trailing slashes, along with specific extensions.
 As of 5.3 the path is obtained through the static method
 UrlPathHelper.getResolvedLookupPath(javax.servlet.ServletRequest) and a UrlPathHelper
 does not need to be passed in.
protected Collection<String> getContent()
AbstractRequestConditionFor example URL patterns, HTTP request methods, param expressions, etc.
getContent in class AbstractRequestCondition<PatternsRequestCondition>null)protected String getToStringInfix()
AbstractRequestConditionFor example " || " for URL patterns or " && "
 for param expressions.
getToStringInfix in class AbstractRequestCondition<PatternsRequestCondition>public boolean isEmptyPathMapping()
public Set<String> getDirectPaths()
public PatternsRequestCondition combine(PatternsRequestCondition other)
PathMatcher.combine(String, String).
 other - the condition to combine with.@Nullable public PatternsRequestCondition getMatchingCondition(HttpServletRequest request)
PathMatcher.getPatternComparator(String).
 A matching pattern is obtained by making checks in the following order:
request - the current requestnull if no patterns match.public List<String> getMatchingPatterns(String lookupPath)
getMatchingCondition(javax.servlet.http.HttpServletRequest).
 This method is provided as an alternative to be used if no request is available
 (e.g. introspection, tooling, etc).lookupPath - the lookup path to match to existing patternspublic int compareTo(PatternsRequestCondition other, HttpServletRequest request)
PathMatcher.getPatternComparator(String). If all compared
 patterns match equally, but one instance has more patterns, it is
 considered a closer match.
 It is assumed that both instances have been obtained via
 getMatchingCondition(HttpServletRequest) to ensure they
 contain only patterns that match the request and are sorted with
 the best matches on top.