Tomcat does not persist Session during restart
- by mabuzer
How to force Tomcat to serialize Session so that the user is kept logged in when Tomcat has restarted? Right now the user has to login again everytime.
Added the following lines into web-app context.xml:
<Manager className="org.apache.catalina.session.PersistentManager">
<Store className="org.apache.catalina.session.FileStore"/>
</Manager>
but still I see login page after Tomcat restart, I use Tomcat 6.0.24