Class AntPathMatcher
- All Implemented Interfaces:
PathMatcher
Part of this mapping code has been kindly borrowed from Apache Ant.
The mapping matches URLs using the following rules:
?matches one character*matches zero or more characters**matches zero or more directories in a path{spring:[a-z]+}matches the regexp[a-z]+as a path variable named "spring"
Examples
com/t?st.jsp— matchescom/test.jspbut alsocom/tast.jsporcom/txst.jspcom/*.jsp— matches all.jspfiles in thecomdirectorycom/**/test.jsp— matches alltest.jspfiles underneath thecompathorg/springframework/**/*.jsp— matches all.jspfiles underneath theorg/springframeworkpathorg/**/servlet/bla.jsp— matchesorg/springframework/servlet/bla.jspbut alsoorg/springframework/testing/servlet/bla.jspandorg/servlet/bla.jspcom/{filename:\\w+}.jspwill matchcom/test.jspand assign the valuetestto thefilenamevariable
Note: a pattern and a path must both be absolute or must both be relative in order for the two to match. Therefore, it is recommended that users of this implementation to sanitize patterns in order to prefix them with "/" as it makes sense in the context in which they're used.
- Since:
- 16.07.2003
- Author:
- Alef Arendsen, Juergen Hoeller, Rob Harrop, Arjen Poutsma, Rossen Stoyanchev, Sam Brannen, Vladislav Kisel
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static classTests whether a string matches against a pattern via a {link Pattern}. -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreate a new instance with the {link #DEFAULT_PATH_SEPARATOR}. -
Method Summary
Modifier and TypeMethodDescriptionprotected booleanActually match the givenpathagainst the givenpattern.protected AntPathMatcher.AntPathStringMatchergetStringMatcher(String pattern) Build or retrieve an {link AntPathStringMatcher} for the given pattern.booleanDoes the givenpathrepresent a pattern that can be matched by an implementation of this interface?booleanMatch the givenpathagainst the givenpattern, according to this PathMatcher's matching strategy.booleanmatchStart(String pattern, String path) Match the givenpathagainst the corresponding part of the givenpattern, according to this PathMatcher's matching strategy.protected String[]tokenizePath(String path) Tokenize the given path into parts, based on this matcher's settings.protected String[]tokenizePattern(String pattern) Tokenize the given path pattern into parts, based on this matcher's settings.
-
Field Details
-
DEFAULT_PATH_SEPARATOR
Default path separator: "/".- See Also:
-
-
Constructor Details
-
AntPathMatcher
public AntPathMatcher()Create a new instance with the {link #DEFAULT_PATH_SEPARATOR}.
-
-
Method Details
-
isPattern
Description copied from interface:PathMatcherDoes the givenpathrepresent a pattern that can be matched by an implementation of this interface?If the return value is
false, then the {link #match} method does not have to be used because direct equality comparisons on the static path Strings will lead to the same result.- Specified by:
isPatternin interfacePathMatcher- Parameters:
path- the path to check- Returns:
trueif the givenpathrepresents a pattern
-
match
Description copied from interface:PathMatcherMatch the givenpathagainst the givenpattern, according to this PathMatcher's matching strategy.- Specified by:
matchin interfacePathMatcher- Parameters:
pattern- the pattern to match againstpath- the path to test- Returns:
trueif the suppliedpathmatched,falseif it didn't
-
matchStart
Description copied from interface:PathMatcherMatch the givenpathagainst the corresponding part of the givenpattern, according to this PathMatcher's matching strategy.Determines whether the pattern at least matches as far as the given base path goes, assuming that a full path may then match as well.
- Specified by:
matchStartin interfacePathMatcher- Parameters:
pattern- the pattern to match againstpath- the path to test- Returns:
trueif the suppliedpathmatched,falseif it didn't
-
doMatch
protected boolean doMatch(String pattern, @Nullable String path, boolean fullMatch, @Nullable Map<String, String> uriTemplateVariables) Actually match the givenpathagainst the givenpattern.- Parameters:
pattern- the pattern to match againstpath- the path to testfullMatch- whether a full pattern match is required (else a pattern match as far as the given base path goes is sufficient)- Returns:
trueif the suppliedpathmatched,falseif it didn't
-
tokenizePattern
Tokenize the given path pattern into parts, based on this matcher's settings.Performs caching based on {link #setCachePatterns}, delegating to {link #tokenizePath(String)} for the actual tokenization algorithm.
- Parameters:
pattern- the pattern to tokenize- Returns:
- the tokenized pattern parts
-
tokenizePath
Tokenize the given path into parts, based on this matcher's settings.- Parameters:
path- the path to tokenize- Returns:
- the tokenized path parts
-
getStringMatcher
Build or retrieve an {link AntPathStringMatcher} for the given pattern.The default implementation checks this AntPathMatcher's internal cache (see {link #setCachePatterns}), creating a new AntPathStringMatcher instance if no cached copy is found.
When encountering too many patterns to cache at runtime (the threshold is 65536), it turns the default cache off, assuming that arbitrary permutations of patterns are coming in, with little chance for encountering a recurring pattern.
This method may be overridden to implement a custom cache strategy.
- Parameters:
pattern- the pattern to match against (nevernull)- Returns:
- a corresponding AntPathStringMatcher (never
null) see #setCachePatterns
-