ernst_pluess wrote:
I guess You don't want to store the data in the HttpSession because you have a cluster and want to be able to transfer HttpSession up on failover.
If yes, you could attache the data through a transient member of a class to the HttpSession to prevent serialization.
HTH
Ernst
Actually, I have two model object sharing the same domain model. I cant store the domain model in memory. So when i want to update, I have only a part of the domain data, so i have to query the domain again from the DB and do a update which makes two requests.
Is this the only way or can hibernate track the changes through the setter methods and provide a partial update?
Karthik