How to set the session timeout in tomcat higher

July 4th, 2008No Comments

You can specify the timeout of a session in the deployment descriptor of your web application (web.xml):

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

  ...
</web-app>

The number within the session-timout element must be expressed in minutes.

Related Posts:

Tagged : ,

No Responses

Comments are closed.