这是 Spring Securityintercept-url
配置:
<intercept-url pattern="/**.html"
access="ROLE_USER" requires-channel="https" />
我想requires-channel="any"
为当地环境做点什么。是否可以在模式中添加绝对 URL?
这是 Spring Securityintercept-url
配置:
<intercept-url pattern="/**.html"
access="ROLE_USER" requires-channel="https" />
我想requires-channel="any"
为当地环境做点什么。是否可以在模式中添加绝对 URL?
您可以使用 Spring bean 定义配置文件来实现这一点。
<beans profile="local">
</beans>
这是一个新功能。看一下Spring Source博客中的条目:http: //blog.springsource.com/2011/02/11/spring-framework-3-1-m1-released/