java - 将子实体持久化操作级联到其父实体

标签 java hibernate jpa hibernate-mapping composite-primary-key

我有一个 OneToMany 与我使用 Hibernate 注释设置的两个实体的关联。此关联的 Child 实体有一个复合主键,由外键 parent 列和另一个标识符 childName 组成。当我尝试通过保存子实体将提交级联到父实体时,这似乎会导致“引用完整性约束冲突”。

我已经为问题创建了一个简单的工作示例,它从我使用这种关系建模的实际场景中抽象出来,但这意味着我知道问题是由于这种关联和使用复合主键造成的。

为什么我不能通过保存子实体来提交两个实体?为什么会违反外键约束?

主要测试方法*:

// Create some detached entities
Parent p = new Parent();
p.setName("Fooson");

// New child id
Child.ChildPK pk = new Child.ChildPK();
pk.setParentName(p);
pk.setChildName("Barty");     

// Set id to new Child
Child c = new Child();
c.setChildPK(pk);

// Add child to parent
p.getChildren().add(c);

// Saving the parent
// service.parentDao.save(p); // if this is uncommented, it works fine

// Cascade child and associated parents in one transaction
service.childDao.save(c); // ConstraintViolationException

子类.java

@Entity
@Table(name="Child")
public class Child implements Serializable {

    @EmbeddedId
    private ChildPK id;

    public ChildPK getChildPK() {
        return id;
    }

    public void setChildPK(ChildPK childPK) {
        this.id = childPK;
    }

    @Embeddable
    public static class ChildPK implements Serializable 
    {
        @ManyToOne(cascade=CascadeType.ALL)
        @JoinColumn(name="name")
        Parent parent;

        @Column(name="childName")
        String childName;

        public Parent getParentName() {
            return parent;
        }

        public void setParentName(Parent parentName) {
            this.parent = parentName;
        } 

        public String getChildName() {
            return childName;
        }

        public void setChildName(String childName) {
            this.childName = childName;
        }

        @Override
        public int hashCode() {
            int hash = 5;
            hash = 67 * hash + Objects.hashCode(this.parent);
            hash = 67 * hash + Objects.hashCode(this.childName);
            return hash;
        }

        @Override
        public boolean equals(Object obj) {
            if (obj == null) {
                return false;
            }
            if (getClass() != obj.getClass()) {
                return false;
            }
            final ChildPK other = (ChildPK) obj;
            if (!Objects.equals(this.parent, other.parent)) {
                return false;
            }
            return Objects.equals(this.childName, other.childName);
        }

        @Override
        public String toString() {
            return "ChildPK{" + "parentName=" + parent.getName() + ", childName=" + childName + '}';
        }

    }

    @Override
    public String toString() {
        return "Child{" + "id=" + id + '}';
    }

}

父类.java

@Entity
@Table(name="Parent")
public class Parent implements Serializable {

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

    @OneToMany(mappedBy="id.parentName", cascade=CascadeType.ALL)
    Set<Child> children = new HashSet<>(0);

    public String getName() {
        return name;
    }

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

    public Set<Child> getChildren() {
        return children;
    }

    public void setChildren(Set<Child> children) {
        this.children = children;
    }

    @Override
    public int hashCode() {
        int hash = 3;
        hash = 73 * hash + Objects.hashCode(this.name);
        return hash;
    }

    @Override
    public boolean equals(Object obj) {
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        final Parent other = (Parent) obj;
        if (!Objects.equals(this.name, other.name)) {
            return false;
        }
        return true;
    }

    @Override
    public String toString() {
        return "Parent{" + "name=" + name + ", children=" + children + '}';
    }

}

完整的异常信息是:

Exception in thread "main" org.hibernate.exception.ConstraintViolationException: 
Could not execute JDBC batch update
...
Caused by: org.h2.jdbc.JdbcBatchUpdateException: 
Referential integrity constraint violation: 
"FK3E104FCBA07683D: PUBLIC.CHILD FOREIGN KEY(NAME) REFERENCES 
PUBLIC.PARENT(NAME) ('Fooson')"; SQL statement:
insert into Child (childName, name) values (?, ?)
...

* main 方法指的是我没有在这里显示的 DAO 和 ServiceLayer 对象,因为我认为它与问题无关。但是,如果需要,我可以发布这些内容。

最佳答案

将保存操作从子实体级联到父实体是没有意义的,反之亦然。

那是因为操作将是:

  • 拯救 child
  • 将保存操作传播给Parent

但是 Child 依赖于 Parent.id 来设置它的 FK。

您还需要从数据库的角度可视化此操作流程。您可以保存引用不存在的父项的子项吗?当然不是。

想想当您删除子实体时会发生什么。级联将传播到父级,然后传播到它的所有子级。

因此,您必须从 Embeddable 类中删除级联:

@ManyToOne(cascade=CascadeType.ALL)

并取消注释工作正常的代码:

// Saving the parent
service.parentDao.save(p); // if this is uncommented, it works fine

关于java - 将子实体持久化操作级联到其父实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28519025/

相关文章:

java - NoSuchBeanDefinitionException : No bean named 'triangle' is defined

Java.sql.connection 对象第二次不工作

java - 有没有办法重建sessionFactory?

java - 如何让maven从另一个项目复制所有类?

java - Mysql maven jpa框架

java - 来自异常对象的信息通过 java.util.logging

java - Android:如何创建空 Realm 对象?

mysql - JPA 复合键的最佳实践是什么?

java - Hibernate 生成带有 JPA @Enumerated 注释的 VARBINARY 列

jpa - Internal Exception : java. sql.SQLException : Invalid state, 连接对象被关闭