PDA

View Full Version : Session persistence


jamin
Mar 16th, 2006, 05:00 PM
Hi,

What methods do people use to persist user sessions, so you can restart the webapp with out the users loosing their session data?

Ben

MartyJones
Mar 16th, 2006, 08:26 PM
If I understand you correctly then it is the servlet container's responsibility to persist the session on server restart.

That being said, it is up to you to ensure that everything that you are storing in the session is serializable. :)