<beans:bean id="loginUrlAuthenticationEntryPoint"
class="org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint">
<beans:property name="loginFormUrl" value="/session-timeout-1.do" />
</beans:bean/>
さまざまなタイプのユーザー向けに 2 つの異なるセッション タイムアウト ページがあります。ユーザーがログインした後、ユーザーのタイプを確認した後、プロパティの値を「/session-timeout-1.do」から「/session-timeout-2.do」に変更する必要がある場合があります。
実行時にプロパティ値を変更できる API があるのだろうか?
または、構成ファイルに変数を含めることは可能ですか?
<beans:property name="loginFormUrl" value="${time-out-url}">
変数「time-out-url」はプログラムで設定できますか?