gpt4 book ai didi

hibernate - 无法将实体与派生实体合并

转载 作者:行者123 更新时间:2023-12-03 16:11:28 25 4
gpt4 key购买 nike

我正在使用@JoinedColumns 尝试派生实体,

让我给你看我的代码,

下面是sql代码,

create table TBL_EMPLOYEE_FIVE(
EMP_ID integer ,
NAME varchar(50),
COUNTRY varchar(50),
MGR_ID integer,
MGR_COUNTRY varchar(50),
constraint PK_COMPOSIT_001AD primary key(EMP_ID,COUNTRY),
constraint FK_COMPO_00123 foreign key(MGR_ID,MGR_COUNTRY) references TBL_EMPLOYEE_FIVE
)

下面是映射实体的代码,

package com.entities.derived;
@Entity
@Table(name="TBL_EMPLOYEE_FIVE")
@IdClass(EmployeeId.class)
public class EmployeeOne implements Serializable{

// contructors

@Id
@Column(name="EMP_ID")
private Integer employeeId;

@Id
@Column(name="COUNTRY")
private String empCountry;

@Column(name="NAME")
private String employeeName;

@ManyToOne( cascade= {CascadeType.PERSIST, CascadeType.PERSIST},
fetch= FetchType.LAZY,
targetEntity=EmployeeOne.class)
@JoinColumns({
@JoinColumn(name="MGR_ID",referencedColumnName="EMP_ID"),
@JoinColumn(name="MGR_COUNTRY",referencedColumnName="COUNTRY")
})
private EmployeeOne manager;

@OneToMany(cascade={CascadeType.PERSIST, CascadeType.PERSIST},mappedBy="manager")
private Set<EmployeeOne> employees;

// getters, setters, hashcode and equals implementation
}

这是类 ID 下面的代码,

@Embeddable
public class EmployeeId implements Serializable{

public EmployeeId(){}

public EmployeeId(Integer employeeId,String empCountry){
this.employeeId = employeeId;
this.empCountry = empCountry;
}

private Integer employeeId;
private String empCountry;

// getters, hashcode and equals implementation

}

在main方法中编写的无异常运行正常的代码如下,

用于持久化新员工,

private static int generateId(EntityManager em,String country)throws Exception{

Query q = em.createQuery("select max(e.employeeId) from EmployeeOne e where e.empCountry = '"+country+"'");

List list = q.getResultList();
int count = 0;

if(list != null && list.size() > 0){
count = Integer.parseInt(String.valueOf((list.get(0) != null) ? list.get(0) : "0"));
}

count++;
return count;
}

插入新员工,

private static void insertEmployee2(EntityManager em) throws Exception{
EmployeeOne manager = new EmployeeOne("Rajkumar Bahadur", "NEPAL");
manager.setEmployeeId(generateId(em, manager.getEmpCountry()));
Set<EmployeeOne> employees = new HashSet<EmployeeOne>();

int count = generateId(em, "FIJI");

employees.add(new EmployeeOne(count,"Okajima Fahim","FIJI",manager));
employees.add(new EmployeeOne(++count,"Jabulani Xitwo","FIJI",manager));
manager.setEmployees(employees);
em.persist(manager);
}

获取员工是,

private static void getEmployees(EntityManager em) throws Exception{
EmployeeOne manager = em.find(EmployeeOne.class, new EmployeeId(3,"CHINA"));

Set<EmployeeOne> employees = manager.getEmployees();

for(EmployeeOne emp : employees){

System.out.println(emp);
}
}

以上所有方法都运行良好。

但是唯一不起作用的代码是merge,代码如下

private static void updateEmployee(EntityManager em) throws Exception{
EmployeeOne manager = em.find(EmployeeOne.class, new EmployeeId(3,"CHINA"));
Set<EmployeeOne> employees = manager.getEmployees();
int count = generateId(em, "IRAN");
employees.add(new EmployeeOne(count,"Zaid Khan","IRAN",manager));
employees.add(new EmployeeOne(++count,"Maqbool Ansari","IRAN",manager));

em.merge(manager);
}

我得到的异常(exception)是,

javax.persistence.EntityNotFoundException: Unable to find com.entities.derived.EmployeeOne with id com.entities.derived.EmployeeId@226b19
at org.hibernate.ejb.Ejb3Configuration$Ejb3EntityNotFoundDelegate.handleEntityNotFound(Ejb3Configuration.java:155)
at org.hibernate.event.internal.DefaultLoadEventListener.load(DefaultLoadEventListener.java:210)
at org.hibernate.event.internal.DefaultLoadEventListener.proxyOrLoad(DefaultLoadEventListener.java:251)
at org.hibernate.event.internal.DefaultLoadEventListener.onLoad(DefaultLoadEventListener.java:148)
....

你能告诉我哪里错了吗

最佳答案

改变

@ManyToOne( cascade= {CascadeType.PERSIST, CascadeType.PERSIST},
fetch= FetchType.LAZY,
targetEntity=EmployeeOne.class)

@ManyToOne( cascade= {CascadeType.PERSIST, CascadeType.MERGE},
fetch= FetchType.LAZY,
targetEntity=EmployeeOne.class)

当父级“更新”(合并)时,您需要级联创建 EmployeeOne 实例。通过更改 @ManyToOne 注释以包含 CascadeType.MERGE,您应该可以实现这一目标。

关于hibernate - 无法将实体与派生实体合并,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16036118/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com