slight problem here: I have two entity classes, let's say class Parent { Set<Child> children; } class Child { SomethingElse …
java hibernate one-to-many cascade all-delete-orphanI have 2 entities: News and NewsComment @Entity @Table(name = "news", schema = "city") public class News { private Set<CommentNews> …
hibernate cascading-deletes all-delete-orphan