Could not initialize proxy – no Session
Your problem is that the hibernate Session lives only for one request. It opens in the start of the request and closes at the end. You guessed the answer: Hibernate session is closed before both requests are finished. Exactly what is happening? Your entity objects live during both requests. How? They are stored in the … Read more