If you do want the client lost the session, then you need to persist the session in your database or by messaging(WAS 5.1 Network deployment version support it).
By the way, all the objects put into session need to implement the Serializable interface. Some times that will be your big code change.
If you do not care the session lost, it is fine.
If you have some object cache to read and write, it maybe not consistency seems different thread in different server may update differently.
This is from appication perspective. Just for your reference.
By the way, all the objects put into session need to implement the Serializable interface. Some times that will be your big code change.
If you do not care the session lost, it is fine.
If you have some object cache to read and write, it maybe not consistency seems different thread in different server may update differently.
This is from appication perspective. Just for your reference.