gpt4 book ai didi

java - JPA/hibernate : How to persist duplicate values in same session for field having @Id annotation?

转载 作者:行者123 更新时间:2023-11-30 05:22:40 25 4
gpt4 key购买 nike

客户表示子表中不需要主键。所以子表有两列“ID”和“Value”,其中ID可以重复。

当我删除 @Id 时, hibernate 会显示“没有为实体指定标识符”

当我在代码中保留@Id时,hibernate会说“javax.persistence.EntityExistsException:具有相同标识符值的不同对象已与 session 关联”;在坚持的同时

关键是我需要保留@Id,但如何使用@Id注释在一个 session 中保留两个相同的ID。

以下是代码:

主要实体:

public class CustomerAgreement implements Serializable {

@OneToMany(mappedBy = "customerAgreement", orphanRemoval = true, fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST})
private List<CustomerAgreementComputerAttachments> autoAttachComputersFromOrganizations;

组合实体:

public class CustomerAgreementComputerAttachments implements Serializable{

private static final long serialVersionUID = 1L;
@Id
@ManyToOne
@JoinColumn(name = "ID")
private CustomerAgreement customerAgreement;

主要程序:

  public static List<CustomerAgreement> create() {
List<CustomerAgreement> li = new ArrayList<CustomerAgreement>();
CustomerAgreement cAgreement = new CustomerAgreement();
cAgreement.setId(2222l);
cAgreement.setName("Tillu");;
cAgreement.setCustomerId("140");


List<CustomerAgreementComputerAttachments> catl = new ArrayList<>();
CustomerAgreementComputerAttachments catt = new CustomerAgreementComputerAttachments();
catt.setAttachmentValue("TEST");
catt.setCustomerAgreement(cAgreement);
CustomerAgreementComputerAttachments tatt = new CustomerAgreementComputerAttachments();
tatt.setAttachmentValue("TESTy");
tatt.setCustomerAgreement(cAgreement);
catl.add(catt);
catl.add(tatt);
cAgreement.setAutoAttachComputersFromOrganizations(catl);



li.add(cAgreement);
return li;
}
public static void main(String[] args) {

EntityManagerFactory emf = Persistence.createEntityManagerFactory("IntegratorMasterdataPU");
em = emf.createEntityManager();
em.getTransaction().begin();
for(CustomerAgreement ca: create()) {

em.persist(ca);

}
em.getTransaction().commit();

}

最佳答案

实体必须可以通过唯一键来识别。这不需要对应于任何数据库主键,但必须有一个或多个唯一的列可用于标识实体。

如果这是不可能的,那么您需要将 CustomerAgreementComputerAttachment 设为 @Embeddable

与实体不同,@Embeddable 没有独立的身份(没有 @ID)。进一步查看此处:

What is difference between @Entity and @embeddable

@Entity
public class CustomerAgreement {

@ElementCollection
@JoinTable(name="...", joinColumn = "id")
private List<CustomerAgreementComputerAttachment> attachments;
}

@Embeddable
public class CustomerAgreementComputerAttachments {

//No back reference to CustomerAgreement
//Other fields as required.
}

关于java - JPA/hibernate : How to persist duplicate values in same session for field having @Id annotation?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59279041/

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