1. Delete entity: ignoring version change forum.hibernate.orgHi, we have to classes Person and Address which have a bidirectional One-To-One relation (optional = false). Code: public class Person { private Address address; @OneToOne(optional = false) public Address getAddress() { return address; } } public class Address ... |
2. Delete Cascade problem with version forum.hibernate.org |
3. Cascading delete question - short version forum.hibernate.orgHey folks - I don't know if I the following is a feature of Hibernate (2.1.8) or a problem with my code/configuration. The core of the issue are three objects - Camp, CampWeek, ChildrenInCampWeek (yes, a little Camp Reservation system for the kids). A Camp has many CampWeeks and each CampWeek can have many children in it. When I delete the ... |