@OneToOne unidirectional and bidirectional

后端 未结 2 1122
礼貌的吻别
礼貌的吻别 2020-12-05 15:53

I have two examples that first is @OneToOne unidirectional mapping and second bidirectional. In unidirectional mapping, the owning-side table must contain a join column that

相关标签:
2条回答
  • 2020-12-05 16:24

    I just had an experiment on this. If you just do this below, both tables will have foreign keys:

    @OneToOne
    private Address43 address;
    
    @OneToOne
    private Customer44 customer;
    

    Now you don't need to do the join. I am not sure if it is a good practice or not. Just make sure if you don't have CASCADES.

    0 讨论(0)
  • 2020-12-05 16:30

    Because you didn't understand how a bidirectional OneToOne is mapped. You don't need two foreign keys. A single one is sufficient to perform a join between both tables, in both directions:

    select a.* from address a inner join customer c on c.addressId = a.id;
    select c.* from customer c inner join address a on c.addressId = a.id;
    

    The fact that the association is unidirectional or bidirectional doesn't change how the tables are linked together. It just changes the mapping, and allows navigating through the association in both directions.

    In a bidirectional association, you always have an owning side (which tells how the association is mapped, using which join column), and an inverse side, where you just say: I'm the other side of the association that is mapped by this field (the field in the mappedBy attribute value) in the target entity.

    0 讨论(0)
提交回复
热议问题