gpt4 book ai didi

Spring 安全多个 hasIPAddress antMatchers

转载 作者:IT老高 更新时间:2023-10-28 13:58:29 25 4
gpt4 key购买 nike

我有以下 spring 安全配置片段:

http
.authorizeRequests()
.antMatchers("/tokens").hasIpAddress("10.0.0.0/16")
....

这可行,但我还想授予从 127.0.0.1 访问 "/tokens" 的权限。我希望按照以下方式进行操作,但它没有:

http
.authorizeRequests()
.antMatchers("/tokens").hasIpAddress("10.0.0.0/16").hasIpAddress("127.0.0.1/32")
....

最佳答案

http
.authorizeRequests()
.antMatchers("/tokens").access(
"hasIpAddress('10.0.0.0/16') or hasIpAddress('127.0.0.1/32')")
....

关于Spring 安全多个 hasIPAddress antMatchers,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28303097/

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