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

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -