Are there any solutions to the problem explained in:
http://brian.pontarelli.com/2006/04/26/ ... -fetching/
Briefly:
Hibernate doesn’t fetch collections within a bean in the same session the beans were created in. If you need objects in those collections later on within that session, you had better put them in there. This even holds true when you go back to hibernate to refetch the same object instance. Here’s a quick example:
User user = new User("Brian", "Pontarelli");
userDAO.saveOrUpdate(user);
Role role = new Role();
role.setUser(user);
roleDAO.saveOrUpdate(role);
user = userDAO.fetch("Brian", "Pontarelli");
user.getRoles().get(0); // THIS IS NULL!
Once the session is closed out and the fetch is performed in a new session then this will work fine. I can see how this behavior protects the object instance somewhat, but this means that the instance also misses any updates within other threads to its associations.
--
gurkan