Say, for example, I had two entities: Article
and Tag
(like in a typical blog). Each article can have many tags, and each tag can be used by many articles, so it is a classical m:n relationship.
I need to specify an owning side with JPA. But which side should be the owning side? An article doesn't depend on a certain tag and vice versa. Is there a rule of thumb for determining which side should be the owning side?
Every bidirectional relationship requires an owning side in JPA. In the particular case of ManyToMany
:
@JoinTable
is specified on the owning side of the relationship.
From the JPA specification:
9.1.26 ManyToMany Annotation
Every many-to-many association has two sides, the owning side and the non-owning, or inverse, side. The join table is specified on the owning side. If the association is bidirectional, either side may be designated as the owning side.
You choose the owning side by considering where you want the association be updated. You can update de ManyToMany association in only one place( the owning side). So the choice depend on how you want to manage/update your association fields.
my point of view:
it depends on your business. which entity is more important in your business.
in your example, i think Article should be owning side,
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With