蚂蚁路径风格图案
蚂蚁路径样式模式的规则是什么。
令人惊讶的是,Ant 网站本身的信息却很少。
What are the rules for Ant path style patterns.
The Ant site itself is surprisingly uninformative.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
spring-framework< 中匹配的 Ant 样式路径模式/a>:
http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/util /AntPathMatcher.html
Ant-style path patterns matching in spring-framework:
http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/util/AntPathMatcher.html
我想你的意思是如何使用 路径模式
如果是关于是否使用斜杠或反斜杠,这些将被转换为执行时使用的平台上的路径分隔符。
I suppose you mean how to use path patterns
If it is about whether to use slashes or backslashes these will be translated to path-separators on the platform used during execution-time.
投票最多的答案,由
@user11153
使用表格提供更易读的格式。映射使用以下规则匹配 URL:
一些示例:
Most upvoted answer by
@user11153
using tables for a more readable format.The mapping matches URLs using the following rules:
Some examples:
ANT 样式模式匹配器
通配符
该实用程序使用三种不同的通配符。
ANT Style Pattern Matcher
Wildcards
The utility uses three different wildcards.
正如@user11153提到的,Spring的 AntPathMatcher 实现并记录了 Ant 风格路径模式匹配的基础知识。
此外,Java 7 的 nio API 通过 FileSystem.getPathMatcher
As @user11153 mentioned, Spring's AntPathMatcher implements and documents the basics of Ant-style path pattern matching.
In addition, Java 7's nio APIs added some built in support for basic pattern matching via FileSystem.getPathMatcher