JPA @IdClass - 更新

时间:2012-12-04 21:24:45

标签: java jpa

如果您有像

这样的IdClass
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类中的对象,如果你只有一个需要更新的人,该怎么做。

全部

1 个答案:

答案 0 :(得分:1)

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

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

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

使用自动生成的代理键,一切都会轻松得多。