Reputation: 598
I've upgrade wicket from 8.12 to 9.5 and after that my application started clearing session data every time I restart tomcat instance. In particular all users have to sign in after that. With 8.12 version session data persisted between restarting.
How can I configure similar behavior in 9.5 version?
Upvotes: 0
Views: 166
Reputation: 17533
This is not something that is managed by Wicket.
Wicket uses the HttpSession to store information. Http sessions are managed by the servlet container, like Apache Tomcat, Jetty, etc.
For Apache Tomcat read http://tomcat.apache.org/tomcat-9.0-doc/config/manager.html
Upvotes: 1