Looks like you have an Entity called Person, which has a lazily loaded mapped collection of Addresses? You have loaded the Person, and the session into which he was loaded is now closed.
After closing the session, you tried to access this collection of addresses, and Hibernate tried to download them. However, this is not possible if the original session is no longer available.
To access the address property, you have several options:
OpenSessionInView, , Hibernate / ( Spring MVC, , -). Hibernate HTTP-.
, ( ). ,
Hibernate.initialize(Person.Address)
HQL, . - :
createQuery("from Person as person left join fetch person.address")
, .