使用Spring Security 3.0设置会话超时期限

我正在使用Spring Security 3.0与LDAP服务器进行身份validation,我不知道设置我自己的会话超时期限。 我相信默认是30分钟,但我需要将其设置为比这更长

您可以为web.xml中的所有会话设置会话超时(例如60分钟):

<session-config> <session-timeout>60</session-timeout> </session-config> 

或在每个会话的基础上使用

 session.setMaxInactiveInterval(60*60); 

后者你可能想在authorizationSuccessHandler中做。

 <form-login authentication-success-handler-ref="authenticationSuccessHandler"/>