24

在我的应用程序中,我使用 JPA 2.0 和 Hibernate 作为持久性提供程序。我在两个实体之间有一对多的关系(使用 a@JoinColumn和 not @JoinTable)。我想知道如何在 JPA 注释中指定inverse=true(如 中所指定hbm.xml)来反转关系所有者。

谢谢你。

4

3 回答 3

45

我找到了答案。@OneToMany 注解的 mappedBy 属性的行为与 xml 文件中的 inverse = true 相同。

于 2011-02-02T15:59:33.983 回答
3

该属性mappedBy表示这一方的实体是关系的逆,所有者驻留在另一方实体中。其他实体将具有@JoinColumn注释和@ManyToOne关系。因此我认为 inverse = true 与@ManyToOne注释相同。

同样 inverse=”true” 表示这是处理关系的关系所有者。

于 2017-01-09T06:48:17.973 回答
0

通过使用@OneToMany@ManyToMany的mappedBy属性,我们可以在注释方面启用 inverse="true"。例如具有一对多关系的 Branch 和 Staff

@Entity
@Table(name = "branch")
public class Branch implements Serializable {
    @Id
    @Column(name = "branch_no")
    @GeneratedValue(strategy = GenerationType.AUTO)
    protected int branchNo;
    @Column(name = "branch_name")
    protected String branchName;
    @OneToMany(mappedBy = "branch") // this association is mapped by branch attribute of Staff, so ignore this association
    protected Set<Staff> staffSet;
    
    // setters and getters
}
@Entity
@Table(name = "staff")
public class Staff implements Serializable {
    @Id
    @Column(name = "staff_no")
    @GeneratedValue(strategy = GenerationType.AUTO)
    protected int staffNo;
    @Column(name = "full_name")
    protected String fullName;
    @ManyToOne
    @JoinColumn(name = "branch_no", nullable = true)
    protected Branch branch;

    // setters and getters
}
于 2020-07-12T18:46:10.727 回答