gpt4 book ai didi

java - Ant 匹配器结尾为

转载 作者:行者123 更新时间:2023-12-01 17:42:42 25 4
gpt4 key购买 nike

我的 Spring 安全配置需要一个 ant 匹配器。该匹配器应匹配以下网址

  • /健康
  • / Controller /健康

现在我有了这个 .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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com