Web アプリケーションでセッションを処理するために以下を使用しています。
<security:session-management invalid-session-url="/session-expired" session-authentication-strategy-ref="sas"/>
<bean id="sas"
class="org.springframework.security.web.authentication.session.ConcurrentSessionControlStrategy">
<constructor-arg name="sessionRegistry"
ref="sessionRegistry" />
<property name="maximumSessions" value="1" />
</bean>
アプリケーション (通常は Tomcat 7) を起動してログイン ページにアクセスしようとすると、/session-expired URL に移動します。なぜこうなった?アプリケーションが停止したら、すべてのセッションを無効にするべきではありませんか? それとも、これはブラウザ セッションの問題ですか?