In a Spring/Hibernate based project, we have a one-to-many relationship between two entities. Required operations are:
- find the child's parent;
- find the parent's children;
- when parent is being removed, we also need to remove the children;
- mass-create the children.
We came up with two ways to implement this.
Bidirectional association: child entity has
@ManyToOnecolumn linking it to parent, and the parent has@OneToManylazy-loaded collection of children. All above operations can be performed in the model:child.getParent(); parent.getChildren(); //lazy loading session.delete(parent); //cascade removal of the children does the trick here session.save(parent); //cascade persist created the childrenUnidirectional association: child entity has
@ManyToOnecolumn linking it to parent, but the parent does not have any link to children. Most operations should be performed in service methods:child.getParent(); //still in the model Collection<Child> findChildren(Parent parent); //service method in ChildService void deleteChildren(Parent parent); //service method in ChildService void createChild(Parent parent, ... childAttributes); //service method in ChildService invoked for each new child.
The first approach seems to be easier to implement (you can reuse Hibernate cascading functionality) but some of us see the bidirectional associations as a potential cause of problems.
What should be a better design choice? Are there any well-known problems, performance or design, created by the bidirectional approach?