文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Spring路径匹配器AntPathMatcher

2023-09-02 09:40

关注

文章目录


PathMatcher接口

Spring的PathMatcher路径匹配器接口,用于支持带通配符的资源路径匹配。

使用场景

PathMatcher接口在Spring的许多场景下使用,比如:

接口方法

方法描述
boolean isPattern(String path)判断路径是否是模式
boolean match(String pattern, String path)判断路径是否完全匹配
boolean matchStart(String pattern, String path)判断路径是否前缀匹配
前缀匹配的意思:路径能与模式的前面部分匹配,但模式可能还有后面多余部分
例如:/test能前缀匹配/test/{id}(但模式还有多余的/{id}部分未匹配)
String extractPathWithinPattern(String pattern, String path)得到模式匹配的部分值
该方法只返回路径的实际模式匹配部分
例如:myroot
/user/aaa结束符不一致

实际在Spring项目中使用的时候,你会发现:就算实际请求的结束符为/,但还是能匹配成功。这又是为什么呢?

两个关键属性:

如何修改useSuffixPatternMatch、useTrailingSlashMatch属性的值,可参考文章:https://blog.csdn.net/m0_56069948/article/details/124791784

关键源码:

PatternsRequestCondition类的getMatchingPattern方法

private String getMatchingPattern(String pattern, String lookupPath) {// 模式与路径相等,直接返回模式if (pattern.equals(lookupPath)) {return pattern;}// 如果使用后缀模式匹配,返回的模式会拼接上合适的后缀,如.htmlif (this.useSuffixPatternMatch) {if (!this.fileExtensions.isEmpty() && lookupPath.indexOf('.') != -1) {for (String extension : this.fileExtensions) {if (this.pathMatcher.match(pattern + extension, lookupPath)) {return pattern + extension;}}}else {boolean hasSuffix = pattern.indexOf('.') != -1;if (!hasSuffix && this.pathMatcher.match(pattern + ".*", lookupPath)) {return pattern + ".*";}}}if (this.pathMatcher.match(pattern, lookupPath)) {return pattern;}// 如果使用后缀路径模式匹配,返回的模式会拼接上/if (this.useTrailingSlashMatch) {if (!pattern.endsWith("/") && this.pathMatcher.match(pattern + "/", lookupPath)) {return pattern + "/";}}return null;}

因此,getMatchingPattern方法返回的模式再与请求路径进行模式匹配当然能匹配上了。

主要方法

1. isPattern

判断路径是否是模式。

只要路径中拥有 *?{},则就是模式。

public boolean isPattern(@Nullable String path) {    if (path == null) {        return false;    }    boolean uriVar = false;    for (int i = 0; i < path.length(); i++) {        char c = path.charAt(i);        if (c == '*' || c == '?') {            return true;        }        if (c == '{') {            uriVar = true;            continue;        }        if (c == '}' && uriVar) {            return true;        }    }    return false;}

示例:

    public static void main(String[] args) {        AntPathMatcher matcher = new AntPathMatcher();        System.out.println(matcher.isPattern("/test/{id}"));// true    }

2. match

判断路径是否完全匹配

public boolean match(String pattern, String path) {    return doMatch(pattern, path, true, null);}

示例:

    public static void main(String[] args) {        AntPathMatcher matcher = new AntPathMatcher();        System.out.println(matcher.match("/test/*", "/test/111"));// true        System.out.println(matcher.match("/test/**", "/test/111/222"));// true        System.out.println(matcher.match("/test/{id}", "/test/111"));// true        System.out.println(matcher.match("/test/{id}/aa", "/test/111/aa"));// true        System.out.println(matcher.match("/test/{id}-{name}/aa", "/test/111-haha/aa"));// true        System.out.println(matcher.match("/test/{id}-{name}/aa", "/test/111-/aa"));// true    }

3. matchStart

判断路径是否前缀匹配

前缀匹配的意思:路径能与模式的前面部分匹配,但模式可能还有后面多余部分(可以理解为模式是否是以路径开头)

public boolean matchStart(String pattern, String path) {    return doMatch(pattern, path, false, null);}

示例:

    public static void main(String[] args) {        AntPathMatcher matcher = new AntPathMatcher();        System.out.println(matcher.matchStart("/test/*", "/test"));// true        System.out.println(matcher.matchStart("/test/aa/*", "/test"));// true        System.out.println(matcher.matchStart("/test/{id}", "/test"));// true        System.out.println(matcher.matchStart("/test/{id}-{name}/aa", "/test"));// true        System.out.println(matcher.matchStart("/test/{id}", "/test/111/222"));// false    }

4. extractPathWithinPattern

得到模式匹配的映射部分。找出通过*或者?匹配上的那一段路径及其后续路径。

示例:

    public static void main(String[] args) {        AntPathMatcher matcher = new AntPathMatcher();        System.out.println(matcher.extractPathWithinPattern("/test/*", "/test"));//        System.out.println(matcher.extractPathWithinPattern("/test/*", "/test/aa"));// aa        System.out.println(matcher.extractPathWithinPattern("/test/**", "/test/aa/bb"));// aa/bb        System.out.println(matcher.extractPathWithinPattern("/test/a?c/aa", "/test/abc/aa"));// abc/aa        System.out.println(matcher.extractPathWithinPattern("/test/aa?c/aa/cc", "/test/abc/aa"));// abc/aa    }

5. extractUriTemplateVariables

路径必须完全匹配(否则抛出异常),并提取路径中的路径参数值。

示例:

    public static void main(String[] args) {        AntPathMatcher matcher = new AntPathMatcher();        System.out.println(matcher.extractUriTemplateVariables("/test/{id}", "/test/111"));// {id=111}        System.out.println(matcher.extractUriTemplateVariables("/test/a{id}", "/test/a111"));// {id=111}        System.out.println(matcher.extractUriTemplateVariables("/test/{id}/aa", "/test/111/aa"));// {id=111}        System.out.println(matcher.extractUriTemplateVariables("/test/{id}-{name}/aa", "/test/111-haha/aa"));// {id=111, name=haha}        System.out.println(matcher.extractUriTemplateVariables("/test/{id:[a-z]+}", "/test/abc"));// {id=abc}        System.out.println(matcher.extractUriTemplateVariables("/test/{id:\\w+}", "/test/1a_"));// {id=1a_}    }

6. getPatternComparator

得到一个排序比较器。

public Comparator<String> getPatternComparator(String path) {return new AntPatternComparator(path);}

7. combine

合并两个模式。
示例:

    public static void main(String[] args) {        AntPathMatcher matcher = new AntPathMatcher();        System.out.println(matcher.combine("/test/*", "/test/aa"));// /test/aa        System.out.println(matcher.combine("/test/*", "/test/aa/bb"));// /test/test/aa/bb        System.out.println(matcher.combine("/test/**", "/test/aa"));// /test/aa        System.out.println(matcher.combine("/test/{id}", "/test/aa"));// /test/{id}/test/aa    }

参考文章:
https://blog.csdn.net/gongm24/article/details/124961800

来源地址:https://blog.csdn.net/JokerLJG/article/details/127751174

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯