How to fix org.hibernate.LazyInitializationException – could not initialize proxy – no Session

What is wrong here is that your session management configuration is set to close session when you commit transaction. Check if you have something like: in your configuration. In order to overcome this problem you could change the configuration of session factory or open another session and only than ask for those lazy loaded objects. … Read more