I am using the get
method to retrieve the data for an entity. When the session is closed, since lazy loading is enabled, some of the properties are proxies
At a later point in program I want to retrieve those proxy properties. Now what should I do ? Should I open a session everytime I want to fetch a proxy property ? If this is is the case how do I tell an hibernate that inside the session ? I know that I first need to re-attach the instance to the new session bu I am not sure what to do next.