以下是Spring Security intercept-url
配置:
<intercept-url pattern="/**.html"
access="ROLE_USER" requires-channel="https" />
我想为本地环境制作requires-channel="any"
。
是否可以在模式中添加绝对URL?
答案 0 :(得分:2)
您可以使用Spring bean定义配置文件来实现这一目标。
<beans profile="local">
</beans>
这是一项新功能。看一下Spring Source博客中的条目:http://blog.springsource.com/2011/02/11/spring-framework-3-1-m1-released/