Spring: Difference of /** and /* with regards to paths

廉价感情. 提交于 2019-11-27 16:44:46

This is a path pattern that used in Apache ant, spring team implement it and use it throughout the framework.

For reference, see javadoc of AntPathMatcher (newest javadoc seems to have problem, so I link an old one).

Back to your problem, according to the document, it only have 3 rules:

  1. ? matches one character
  2. * matches zero or more characters
  3. ** matches zero or more 'directories' in a path
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!