AntPathMatcher
1、AntPathMatcher类匹配URL规则如下
?匹配一个字符
* 匹配0个或多个字符
* *匹配0个或多个目录
2、例子
AntPathMatcher path=new AntPathMatcher ();
path.matcher("/trip/api/*x","/trip/api/x");//为true
path.matcher("/trip/api/x","/trip/api/abx");//为false,这里url必须是/trip/api/x才为true
文章定期同步更新于公众号【小大白日志】,欢迎关注公众号:
手机扫一扫
移动阅读更方便
你可能感兴趣的文章