spring security3.25 配置異常集合

一、error-if-maximum-exceeded不起作用

  我在配置文件中spring-security.xml中配置了error-if-maximum-exceeded=”false”不起作用,我想第二次覆蓋第一次登陸,我搞了好久原來是我配置這個把它給覆蓋了

  <beans:bean id="sas" class="org.springframework.security.web.authentication.session.ConcurrentSessionControlStrategy">
          <beans:constructor-arg name="sessionRegistry" ref="sessionRegistry" />
          <beans:property name="maximumSessions" value="1" />
          <beans:property name="exceptionIfMaximumExceeded" value="false" />
    </beans:bean>

把參數exceptionIfMaximumExceeded改成false,就可以覆蓋登陸用戶了。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章