在我的应用程序中,我使用 JPA 2.0 和 Hibernate 作为持久性提供程序。我在两个实体之间有一对多的关系(使用 a@JoinColumn
和 not @JoinTable
)。我想知道如何在 JPA 注释中指定inverse=true
(如 中所指定hbm.xml
)来反转关系所有者。
谢谢你。
在我的应用程序中,我使用 JPA 2.0 和 Hibernate 作为持久性提供程序。我在两个实体之间有一对多的关系(使用 a@JoinColumn
和 not @JoinTable
)。我想知道如何在 JPA 注释中指定inverse=true
(如 中所指定hbm.xml
)来反转关系所有者。
谢谢你。
我找到了答案。@OneToMany 注解的 mappedBy 属性的行为与 xml 文件中的 inverse = true 相同。
该属性mappedBy
表示这一方的实体是关系的逆,所有者驻留在另一方实体中。其他实体将具有@JoinColumn
注释和@ManyToOne
关系。因此我认为 inverse = true 与@ManyToOne
注释相同。
同样 inverse=”true” 表示这是处理关系的关系所有者。
通过使用@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
}