1. Trouble with Hibernate One Way Associations stackoverflow.comI'm trying to implement a Hibernate persistence layer in a Java application and I'm having some trouble with it. I'm encountering a no proxy error every time I attempt to ... |
2. Issue with bi-directional association and session cache forum.hibernate.org |
3. Lazy Associations vs. Disconnected Session forum.hibernate.org |
4. Issues with collection association in two open sessions forum.hibernate.orgThis is the code snippit from a class called ConnectionFactory: Code: private static void buildSessionFactory() { try { Configuration hibernateConfig = new Configuration(); ... |
5. the association between a session and object forum.hibernate.orgThe scenario: List tasks = session.find("bla bla bla"); Task t = tasks.get(0); if (SOMETHING) { t.setStatus("Changed"); } HERE I WANT TO UPDATE task by Calling update(task) causes that Exception the object was already associated with the session.... OR Calling session.flush() that does nothing How can I do the update in the same session; - by breaking the association between session and ... |
6. Illegal Attempt to Association Collection with Two Sessions forum.hibernate.orgHi, I am having problems updating an object. I am using HibernateInSessionInterceptor to open a session as needed for the web layer, but not sure if that may be the problem. The object I am updating extends the User class and is mapped with InheritanceType.JOINED. I have collections in both the User class and Member class, some are eager and some ... |
7. Howto filter an many-to-many association from a session forum.hibernate.org |