0

如果你有一个像

public class EmployeePK implements Serializable {

 private String empName;
 private Date birthDay;

 public EmployeePK() {
 }

 public String getName() {
     return this.empName;
 }

 public void setName(String name) {
     this.empName = name;
 }

 public Date getBirthDay() {
     return this.birthDay;
 }

 public void setBirthDay(Date date) {
     this.birthDay = date;
 }

 public int hashCode() {
     return (int)this.empName.hashCode();
 }

 public boolean equals(Object obj) {
     if (obj == this) return true;
     if (!(obj instanceof EmployeePK)) return false;
     EmployeePK pk = (EmployeePK) obj;
     return pk.birthDay.equals(this.birthDay) && pk.empName.equals(this.empName);
 }

}

@IdClass(EmployeePK.class)
@Entity
public class Employee implements Serializable{

   @Id String empName;
   @Id Date birthDay;
   ...

    public Employee (String empName, Date birthDay){
    this.empName= empName;
    this.birthDay= birthDay;
}
...
}

你如何进行更新查询?

    EntityManagerFactory emf = Persistence
            .createEntityManagerFactory("JPA_Compositekey");
    EntityManager em = emf.createEntityManager();
    try {
        em.getTransaction().begin();
        Employee anemployee = em.find( **WHAT DO YOU FILL HERE **)
...

或者我是否必须使用 PK 类中的对象以及如果您只有一个需要更新的人该怎么办。

谢谢大家

4

1 回答 1

1

至于其他所有实体:您提供一个 ID 实例:

EmployeePK pk = new EmployeePK(...);
Employee anemployee = em.find(Employee.class, pk);

并且要更新员工,就像任何其他实体一样:您修改其字段,并且新状态在事务提交时自动保持。只需确保不要更新名称和出生日期:因为它们是 PK 的一部分,所以它们是不可变的。这是不使用组合键的众多充分理由之一,尤其是功能组合键。

使用自动生成的代理键,一切都会变得容易得多。

于 2012-12-04T22:41:34.380 回答