SpringSecurityのintercept-url
構成は次のとおりです。
<intercept-url pattern="/**.html"
access="ROLE_USER" requires-channel="https" />
requires-channel="any"
地域の環境のために作りたいです。パターンに絶対URLを追加することは可能ですか?
SpringSecurityのintercept-url
構成は次のとおりです。
<intercept-url pattern="/**.html"
access="ROLE_USER" requires-channel="https" />
requires-channel="any"
地域の環境のために作りたいです。パターンに絶対URLを追加することは可能ですか?
これを実現するには、 SpringBean定義プロファイルを使用できます。
<beans profile="local">
</beans>
これは新機能です。Spring Sourceブログのエントリを見てください:http://blog.springsource.com/2011/02/11/spring-framework-3-1-m1-released/