From time to time I need to clean Hibernate session.
How to prevent LazyInitializationException with obects that are attached to this session?
I am searching for something like session.detachAllObjects().
and then invoke session.clear()
After this I suppose these objects will be retrieved from DB.
session.clear()detaches all objects.LazyInitializationExceptionusually means that the entities are detached from a session, or a session is closed. If you want to avoid it, attach an object to a session (usingsession.merge(..)), or don’t close it (usingOpenSessionInView)