在 JPA2 中,当我们在使用 @ElementCollection 和 @CollectionTable 注释的实体中使用 Embed-able(基本类型,如 String.. 等)对象时,会创建新表,但在新表中如何在列中声明主键约束?以下是我的代码
public class Employee {
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
private int id;
private String name;
private String salary;
@Transient
private String phnNum;
@Enumerated(EnumType.STRING)
private EmployeeType type;
@ElementCollection
@CollectionTable(name="vacations" , joinColumns=@JoinColumn(name="Emp_Id"))
private Collection<Vacation> vacationBooking;
@ElementCollection
private Set<String> nickNames;
...................
使用此代码,“假期”和“员工昵称”两个表在模式中创建。但我想在两个表中声明一个主键列。我为此做什么?