Saving Sessions Between Rebooting / Deploying Jboss AS 7

We are using JBOSS 7 AS, and I always wondered if it can be configured so that sessions are not lost after a restart or deployment. Are there any possibilities for this, assuming there is no data not related to serialization in the session?

+5
source share
1 answer

Reboot: if you configured a cluster with session replication, then your sessions should be served by another jboss instance if the instance you are connected to does not work.

Deployments: Deployments usually take a lot of time (at least a few minutes); I see no reason to maintain session state in all deployments.

0
source

All Articles