A.Alexander
A.Alexander

Reputation: 598

Wicket-9: how to prevent the data stored in the session from being cleared after web-container restarting?

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

Answers (1)

martin-g
martin-g

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

Related Questions