使用spring的AntPathMatcher匹配url路径

spring的AntPathMatcher用来匹配url比较好用,该类的部分代码借鉴与apache ant故命名为AntPathMatcher,

The mapping matches URLs using the following rules:

匹配url遵循如下规则:

  • ? matches one character(匹配一个字符)
  • * matches zero or more characters(匹配0个或多个字符)
  • ** matches zero or more directories in a path(匹配0个或多个目录)
  • {spring:[a-z]+}} matches the regexp [a-z]+ as a path variable named "spring",意思是将使用[a-z]+ 正则去匹配spring的变量值

栗子:

  • com/t?st.jsp — matches com/test.jsp but also com/tast.jsp or com/txst.jsp
  • com/*.jsp — matches all .jsp files in the com directory
  • com/**/test.jsp — matches all test.jsp files underneath the com path
  • org/springframework/**/*.jsp — matches all .jsp files underneath the org/springframework path
  • org/**/servlet/bla.jsp — matches org/springframework/servlet/bla.jsp but also org/springframework/testing/servlet/bla.jsp and org/servlet/bla.jsp
  • com/{filename:\\w+}.jsp} will match com/test.jsp and assign the value test to the filename variable

注意的是:

a pattern and a path must both be absolute or must both be relative in order for the two to match. Therefore it is recommended that users of this implementation to sanitize patterns in order to prefix them with "/" as it makes sense in the context in which they're used.

你可能感兴趣的:(java基础,spring,core)