0
您可以在web.xml中設置的所有會話的會話超時(比如60分鐘):理想春季會議超時配置
<session-config>
<session-timeout>60</session-timeout>
</session-config>
或在每個會話使用
session.setMaxInactiveInterval(60*60);
後者你可能想在authorizationSuccessHandler中做。
<form-login authentication-success-handler-ref="authenticationSuccessHandler"/>
我的問題:
- 高於同提到的兩種方法?
- 如果沒有,如何通過Spring Configuration XML設置第二種方法 中描述的非活動超時?
- 什麼是春季 框架中設置設置會話超時的理想方法?
請說明您是否在使用[Spring Session](http://docs.spring.io/spring-session/docs/current/reference/html5/),標題爲您的問題和'spring-session '標籤?春季會議有自己的支持配置會議相關方面,你似乎沒有使用。 –