作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 Spring 安全配置需要一个 ant 匹配器。该匹配器应匹配以下网址
现在我有了这个 .antMatchers("/health").permitAll()
但这拒绝了 /contolller/health
然后我尝试了 .antMatchers("/*/health").permitAll()
但这拒绝了 /health
有什么建议吗?
附注我想使用 antMatchers 方法,而不是 regexMatchers
最佳答案
.antMatchers("/health")
仅指特定的 Ant 。
您可以添加“/**”.antMatchers(“/controller/**”)
来引用其所有子文件夹
您可以在/health .antMatchers("/**/health")
之前添加“**/”以匹配位于任何位置的“health”目录或 .antMatchers("/**/health/**")
匹配位于任何位置的“health”目录中的所有文件
或者用逗号写入所有特定子文件夹.antMatchers("/health", "/contoller/health")
。
关于java - Ant 匹配器结尾为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59086985/
我是一名优秀的程序员,十分优秀!