其他分享
首页 > 其他分享> > 总结1

总结1

作者:互联网

  1. 类 PathPatternParser,路径匹配
  2. PathElement:路径元素。一个URL模板根据/可以拆分成N多个路径元素对象
  3. PathContainer:URL的结构化表示。一个URL对应一个PathContainer对象实例
  4. PathPattern:路径解析的模式。路径模式匹配器的最核心API
  5. PathPatternParser:将一个String类型的模式解析为PathPattern实例,这是创建PathPattern实例的唯一方式
  6. 路径匹配:
    PathPatternParser parser = new PathPatternParser();
    PathPattern pattern = parser.parse("/test/**/spring");
    PathContainer pathContainer = PathContainer.parsePath("/test/project/other/spring");
    boolean matches = pattern.matches(pathContainer);
    assertThat(matches).isTrue();

     

标签:总结,路径,matches,PathPatternParser,PathContainer,URL,PathPattern
来源: https://www.cnblogs.com/zzhAylm/p/15942661.html