How to get Spring Security auto logout time, when using invalidate-session="false"? -
i use spring security 3.2 ver.
and logout option have invalidate-session="false".
so can't use session listener.
how auto logout time?
do not click logout button.
and spring security have token listener or credential listener?
you have add tag spring security file
<security:session-management> <security:concurrency-control max-sessions="1" /> </security:session-management>
auto-log out after have not used.
Comments
Post a Comment