0

私は春のセキュリティに慣れていないので、春のセキュリティでのセッション管理について質問があります。特定の瞬間にユーザー名で複数回ログインできないように、アプリケーションを次のように構成しました。

<bean id="sas" class="security.SessionAuthenticationStrategy">
    <constructor-arg ref="sessionRegistry"/>
    <property name="maximumSessions" value="1" />
    <property name="exceptionIfMaximumExceeded" value="true"/>
</bean>

春のセキュリティで特別なユーザーに対してこの構成を防ぐことができるかどうかを知りたいです。

4

1 に答える 1