I have 2 physical servers which my web application hits managed by load balancers. I always get -
org.hibernate.LazyInitializationException: could not initia
Your object is detached. You need to re-attach it to the current session before accessing it:
session.update(object);
Also make sure you access it within a transaction
Read more about the problem/solution here