我使用eclipselink
的JPA
。 我有一个实体,它具有制作出两个场的一个组合键 。 以下是我的嵌入式主键类的字段(成员)。
@Embeddable
public class LeavePK {
@ManyToOne(optional = false)
@JoinColumn(name = "staffId", nullable = false)
private Staff staff;
@Temporal(TemporalType.TIMESTAMP)
private Calendar date;
//setters and getters
}
我的实体将要举办留下相关的人员数据,所以我尝试要结合员工对象,并离开日期以生产复合键。 除了我的逻辑,它没有让我有嵌入类中的外键映射。 当我尝试使用JPA工具- >生成表从实体 ,它下面,这说明给出了错误,但我没有得到它。
org.eclipse.persistence.exceptions.ValidationException
Exception Description: The mapping [staff] from the embedded ID class [class rs.stapp.entity.LeavePK] is an invalid mapping for this class. An embeddable class that is used with an embedded ID specification (attribute [leavePK] from the source [class rs.stapp.entity.Leave]) can only contain basic mappings. Either remove the non basic mapping or change the embedded ID specification on the source to be embedded.
这是否意味着,我不能有一个键(组合键),它也是一个外键。 有没有办法做到这一点ERM一个替代方式? 请帮忙。 谢谢