Top "All-delete-orphan" questions

Can't get hibernate to delete children instances via cascade, that were removed from a one-to-many relation

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-orphan
Hibernate cascade delete orphan

I have 2 entities: News and NewsComment @Entity @Table(name = "news", schema = "city") public class News { private Set<CommentNews> …

hibernate cascading-deletes all-delete-orphan