gpt4 book ai didi

java - 一对多 : hibernate tries to nullify external reference instead of deleting whole child

转载 作者:行者123 更新时间:2023-12-02 04:52:21 25 4
gpt4 key购买 nike

我有一个包含元素列表的实体“BigList”:

  @OneToMany( fetch = FetchType.LAZY, orphanRemoval=true )
@Cascade( { CascadeType.ALL } )
@JoinColumn( name = "ID_LIST", referencedColumnName="ID", updatable=true, insertable=true )
@OrderBy( value="position asc")
List<BigListElem> elements;

虽然 BigListElem 有此引用:

  @ManyToOne( optional=false )
@NotFound( action=NotFoundAction.EXCEPTION )
@JoinColumn( name="ID_LIST", nullable=false, updatable=true, insertable=true )
private BigList list;

现在,如果我删除此列表中的一个元素并调用 merge() 方法(从而更新),我会收到以下异常:

impossible update ("DBNAME"."BIG_LIST_ELEM"."ID_LIST") to NULL

换句话说,它不是删除子项,而是尝试将外部引用设置为 null,从而导致异常,因为“nullable”设置为 false。这是正确的,因为外部引用不能为 null...问题是我不是要求将此引用设置为 null,而是删除整个元素!

这是为什么?

最佳答案

通常对子元素的 FK 约束可以为 null,因为如果我没记错的话,hibernate 会以这种方式进行删除:

  1. 将子实体的FK设置为​​null
  2. 删除子实体

因此,如果您在数据库级别强制执行非空约束,则必须手动从数据库中删除该实体。

关于java - 一对多 : hibernate tries to nullify external reference instead of deleting whole child,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29098177/

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