sessionManager

<h3>Explanation:</h3>

The Session Manager identifies users across HTTP requests using a session cookie.

The name of the session cookie can be specified using the cookieName attribute. The default name is "<tt>SESSIONID</tt>".

The session timeout can be specified in milliseconds using the timeout attribute. The default timeout is 5 minutes.


Can be used in:

oauth2authserver, login and bean

Syntax

[<sessionManager
[cookieName="string"]
[timeout="long"] />]

Sample

<sessionManager
  cookieName="SESSIONID"
  timeout="300000" />