gpt4 book ai didi

java - 更新 Hibernate ManyToMany Relation 中的现有记录

转载 作者:行者123 更新时间:2023-12-01 22:11:26 25 4
gpt4 key购买 nike

在我的数据库中,我有两个表BookLabel,它们之间具有ManyToMany关系。我已经使用 ManyToMany 注释和 CascadeALL 在 Hibernate 中成功映射了它们。

现在考虑这个场景。

当我添加一本带有标签列表的新书时。标签列表包含现有标签和新标签。当书籍保存在数据库中时,它会创建现有标签的重复条目。 [意味着每次都会使用不同的主键创建新标签(即使是现有标签),而不是使用现有和更新的多对多表的引用]。我希望 Hibernate 更新现有标签并创建新的。类似地,ManyToMany 表也会自行更新。

我可以想到手动完成的解决方案。

  • 保存不带标签的图书。
  • 将带有图书引用的现有标签和新标签与图书标签分开。
  • 使用 session.update() 更新现有标签,并使用 session.save() 保存新标签
  • ManyToMany 表将自动更新。

但我相信这是一个解决方案,涉及很少的冗长编码和不必要的处理,并且可以改进。

Hibernate 是否提供了一些内置功能来解决这个问题以及如何改进我的解决方案。

这是我的图书实体

@Entity
@XmlRootElement
public class Book {
@Id
@GeneratedValue
private int bookID;
private String bookName;
private String bookDescription;
private String bookAuthor;
private String bookEdition;
private String bookDownloadURL;
private String bookImageURL;

@ManyToMany(cascade = { CascadeType.ALL })
@JoinTable(name = "book_label", joinColumns = { @JoinColumn(name = "books_bookID") }, inverseJoinColumns = {
@JoinColumn(name = "labels_labelID") })
private List<Label> labels = new ArrayList<Label>();
//getters and setters

标签实体

@Entity
@XmlRootElement
public class Label {

@Id
@GeneratedValue
private int labelID;
private String labelName;
private String labelDesc;
@ManyToMany(mappedBy="labels",fetch=FetchType.EAGER)
private List<Book> books = new ArrayList<Book>();
// getter and setters

在我的数据库中,我已经创建了三个表

  1. 图书表的列名称与图书实体的数据成员完全相同
  2. 标签表的列名称与标签实体的数据成员完全相同
  3. book_label 表包含两列 books_bookID 和 labels_labelID。这些列分别引用其他两个表格中的 bookID 和 labelID (意味着它们实际上是外键)

这是我的测试用例代码

    BookDAO booksDao = new BookDAO();
LabelDAO labelDao = new LabelDAO();

//Label by these name exist already in database.
//Upon adding the new book it should use the previous label and do entries in manytomany table accordingly
// (shouldn't create new labels with same names and map against them) <- THis is happening now

Label label1= new Label();
label1.setLabelName("Fantasy");

Label label2= new Label();
label2.setLabelName("Literature");


Book book1= new Book();
book1.setBookName("Talaash");
book1.getLabels().add(label1);
book1.getLabels().add(label2);

booksDao.addBook(book1);

最佳答案

如果我理解正确,您的问题是两个表都是关系的所有者,因此这会导致重复的条目。只有一个类应该是该关系的所有者。在你的一个类中尝试这样的事情:

@ManyToMany(cascade = {CascadeType.PERSIST, CascadeType.MERGE}, mappedBy = "books")
public List<Label> getLabels()

在你的标签中你应该有书籍列表。同样,如果我理解正确的话,这是因为您没有提供类,以便我们进行更好的分析

关于java - 更新 Hibernate ManyToMany Relation 中的现有记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31738710/

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