1. javax.persistence.EntityNotFoundException forum.hibernate.orgHi, I have a OneToMay relationship in my project, and when I try to remove the side that holds the collection this exception arise: javax.persistence.EntityNotFoundException: deleted entity passed to persist: [org.desoft.dcp.ag.entity.Block# |
2. EntityNotFoundException when merge forum.hibernate.org@Test public final void testAddingTravelWithMember(){ TravelRequest travelRequest = new TravelRequest(); RequestMember requestMember = new RequestMember(); requestMember.setTravelRequest(travelRequest); requestMember.setMember(member); travelRequest.getRequestMembers().add(requestMember); member.getRequestMembers().add(requestMember); ... |
3. EntityNotFoundException merging new graph forum.hibernate.orgI am trying to persist a graph of objects that are laid out as follows: A have a Tree (T) object that owns a collection of Nodes (N). Each node has a collection of child nodes and a reference to a parent node (these are non-containment relationships) forming an hierarchy of nodes. I basically want to load T and in one ... |