1
這裏的春季安全intercept-url
配置:春季安全環境的具體攔截的URL
<intercept-url pattern="/**.html"
access="ROLE_USER" requires-channel="https" />
我要打requires-channel="any"
了當地的環境。 是否可以在模式中添加絕對URL?
這裏的春季安全intercept-url
配置:春季安全環境的具體攔截的URL
<intercept-url pattern="/**.html"
access="ROLE_USER" requires-channel="https" />
我要打requires-channel="any"
了當地的環境。 是否可以在模式中添加絕對URL?
您可以使用Spring 豆定義配置文件來實現。
<beans profile="local">
</beans>
這是一項新功能。看看Spring Source博客中的條目:http://blog.springsource.com/2011/02/11/spring-framework-3-1-m1-released/