Disable automatic logout

Is there a way to disable, that users get logged out automatically after a certain time?

You can set a session timeout in web.xml:

    <session-timeout>30</session-timeout><!-- 30 min -->
1 Like