1

这是 Spring Securityintercept-url配置:

<intercept-url pattern="/**.html"
                       access="ROLE_USER" requires-channel="https" />

我想requires-channel="any"为当地环境做点什么。是否可以在模式中添加绝对 URL?

4

1 回答 1

2

您可以使用 Spring bean 定义配置文件来实现这一点。

<beans profile="local">

</beans>

这是一个新功能。看一下Spring Source博客中的条目:http: //blog.springsource.com/2011/02/11/spring-framework-3-1-m1-released/

于 2012-11-28T20:10:13.557 回答