Saving bidirectional ManyToMany

后端 未结 5 996
粉色の甜心
粉色の甜心 2020-12-05 16:19

I have two entity classes annotated in the following way

@Entity
class A {
   @ManyToMany(mappedBy=\"A\", cascade=CascadeType.ALL)
   private List b         


        
5条回答
  •  囚心锁ツ
    2020-12-05 16:33

    The shortest answer seems to be you cannot and it makes sense. In a bidirectional many-to-many association one side must be master and is used to persist changes to the underlying join table. As JPA will not maintain both side of the association, you could end up with a memory situation that could not be reloaded once stored in the database. Example:

    A a1 = new A();
    A a2 = new A();
    B b = new B();
    a1.getB().add(b);
    b.getA().add(a2);
    

    If this state could be persisted, you would end up with the following entries in the join table:

    a1_id, b_id
    a2_id, b_id
    

    But upon loading, how would JPA know that you intended to only let b know about a2 and not a1 ? and what about a2 that should not know about b ?

    This is why you have to maintain the bidirectional association yourself (and make the above example impossible to get to, even in memory) and JPA will only persist based on the state of one side of it.

提交回复
热议问题