java.lang.Object
org.xbib.net.path.spring.PathPattern
- Alle implementierten Schnittstellen:
Comparable<PathPattern>
Representation of a parsed path pattern. Includes a chain of path elements
for fast matching and accumulates computed state for quick comparison of
patterns.
PathPattern matches URL paths using the following rules:
?matches one character*matches zero or more characters within a path segment**matches zero or more path segments until the end of the path{spring}matches a path segment and captures it as a variable named "spring"{spring:[a-z]+}matches the regexp[a-z]+as a path variable named "spring"{*spring}matches zero or more path segments until the end of the path and captures it as a variable named "spring"
Note: In contrast to
org.springframework.util.AntPathMatcher, ** is supported only
at the end of a pattern. For example /pages/{**} is valid but
/pages/{**}/details is not. The same applies also to the capturing
variant {*spring}. The aim is to eliminate ambiguity when
comparing patterns for specificity.
Examples
/pages/t?st.html— matches/pages/test.htmlas well as/pages/tXst.htmlbut not/pages/toast.html/resources/*.png— matches all.pngfiles in theresourcesdirectory/resources/**— matches all files underneath the/resources/path, including/resources/image.pngand/resources/css/spring.css/resources/{*path}— matches all files underneath the/resources/, as well as/resources, and captures their relative path in a variable named "path";/resources/image.pngwill match with "path" → "/image.png", and/resources/css/spring.csswill match with "path" → "/css/spring.css"/resources/{filename:\\w+}.datwill match/resources/spring.datand assign the value"spring"to thefilenamevariable
- Siehe auch:
-
Feldübersicht
FelderModifizierer und TypFeldBeschreibungstatic final Comparator<PathPattern> Comparator that sorts patterns by specificity as follows: Null instances are last. -
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungPathPattern(String patternText, PathPatternParser parser, PathElement head) -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungcombine(PathPattern pattern2string) Combine this pattern with another.intcompareTo(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.booleanDetermine the pattern-mapped part for the given path.Return the original String that was parsed to create this PathPattern.inthashCode()static booleanbooleanWhether the pattern string contains pattern syntax that would require use ofmatches(PathContainer), or if it is a regular String that could be compared directly to others.matchAndExtract(PathContainer pathContainer) Match this pattern to the given URI path and return extracted URI template variables as well as path parameters (matrix variables).booleanmatches(PathContainer pathContainer) Whether this pattern matches the given path.matchStartOfPath(PathContainer pathContainer) Match the beginning of the given path and return the remaining portion not covered by this pattern.toString()
-
Felddetails
-
SPECIFICITY_COMPARATOR
Comparator that sorts patterns by specificity as follows:- Null instances are last.
- Catch-all patterns are last.
- If both patterns are catch-all, consider the length (longer wins).
- Compare wildcard and captured variable count (lower wins).
- Consider length (longer wins)
-
-
Konstruktordetails
-
PathPattern
-
-
Methodendetails
-
getPatternString
Return the original String that was parsed to create this PathPattern. -
hasPatternSyntax
public boolean hasPatternSyntax()Whether the pattern string contains pattern syntax that would require use ofmatches(PathContainer), or if it is a regular String that could be compared directly to others. -
matches
Whether this pattern matches the given path.- Parameter:
pathContainer- the candidate path to attempt to match against- Gibt zurück:
trueif the path matches this pattern
-
matchAndExtract
Match this pattern to the given URI path and return extracted URI template variables as well as path parameters (matrix variables).- Parameter:
pathContainer- the candidate path to attempt to match against- Gibt zurück:
- info object with the extracted variables, or
nullfor no match
-
matchStartOfPath
Match the beginning of the given path and return the remaining portion not covered by this pattern. This is useful for matching nested routes where the path is matched incrementally at each level.- Parameter:
pathContainer- the candidate path to attempt to match against- Gibt zurück:
- info object with the match result or
nullfor no match
-
extractPathWithinPattern
Determine the pattern-mapped part for the given path.For example:
- '
/docs/cvs/commit.html' and '/docs/cvs/commit.html→ '' - '
/docs/*' and '/docs/cvs/commit' → 'cvs/commit' - '
/docs/cvs/*.html' and '/docs/cvs/commit.html→ 'commit.html' - '
/docs/**' and '/docs/cvs/commit→ 'cvs/commit'
Notes:
- Assumes that
matches(org.xbib.net.path.spring.PathContainer)returnstruefor the same path but does not enforce this. - Duplicate occurrences of separators within the returned result are removed
- Leading and trailing separators are removed from the returned result
- Parameter:
path- a path that matches this pattern- Gibt zurück:
- the subset of the path that is matched by pattern or "" if none of it is matched by pattern elements
- '
-
compareTo
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. The aim is to sort more specific patterns first.- Angegeben von:
compareToin SchnittstelleComparable<PathPattern>
-
combine
Combine this pattern with another. -
hasLength
-
equals
-
hashCode
public int hashCode() -
toString
-