public class ServletPathMatcher extends Object implements PatternMatcher
public boolean matches(String pattern, String source)
three type: endsWithMatch(eg. /xxx*=/xxx/xyz), startsWithMatch(eg. *.xxx=abc.xxx), equals(eg. /xxx=/xxx)。
Notice: *xxx* will match *xxxyyyy. endsWithMatch first.matches 在接口中 PatternMatcherpattern - the pattern to match againstsource - the source to matchtrue if the given source matches the specified pattern,
false otherwise.Copyright © 2012 Alibaba Group. All Rights Reserved.