|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface PathMatcher
Strategy interface for String
-based path matching.
Used by PathMatchingResourcePatternResolver
,
AbstractUrlHandlerMapping
,
PropertiesMethodNameResolver
,
and WebContentInterceptor
.
The default implementation is AntPathMatcher
, supporting the
Ant-style pattern syntax.
AntPathMatcher
Method Summary | |
---|---|
String |
extractPathWithinPattern(String pattern,
String path)
Given a pattern and a full path, returns the non-pattern mapped part. |
boolean |
isPattern(String text)
Does the given string represent a pattern that can be matched
by an implementation of this interface? |
boolean |
match(String pattern,
String text)
Match the given text against the given pattern . |
Method Detail |
---|
boolean isPattern(String text)
string
represent a pattern that can be matched
by an implementation of this interface?
If the return value is false
, then the match(java.lang.String, java.lang.String)
method does not have to be used because direct equality comparisons will
be sufficient.
text
- the string
to check
true
if the given string
represents a patternboolean match(String pattern, String text)
text
against the given pattern
.
pattern
- the pattern to match againsttext
- the string to test
true
if the supplied text
matchedString extractPathWithinPattern(String pattern, String path)
pattern
- the path patternpath
- the full path
path
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |