我有一种情况,用户可以从列表中删除子实体:

@Entity
public class StandaredPriceTag {
.
.
.
@OneToMany(cascade = { CascadeType.ALL }, fetch = FetchType.EAGER,mappedBy="standaredPriceTag")
List<StandaredPrice> standaredPriceList = new ArrayList<>();




@Entity
public class StandaredPrice {
    .
    @ManyToOne(fetch = FetchType.LAZY)
    @JoinColumn(name = "standard_price_tag_id")
    private StandaredPriceTag standaredPriceTag;
    .


据我了解,只要StandaredPriceTag附加到实体管理器,任何更新都将反映到数据库中。现在,当我从List<StandaredPrice> standaredPriceList删除项目,然后将StandaredPriceTag重新附加为entityManager.merge(standaredPriceTag);时,子实体仍然存在。

最佳答案

您需要进一步设置@OneToMany上的孤立孤岛。使用标准CascadeType.DELETE,您需要显式删除实体。移除孤儿后,您只需按照以下步骤从列表中清除它:

@OneToMany(cascade = { CascadeType.ALL }
  , fetch = FetchType.EAGER,mappedBy="standaredPriceTag"
  , orphanRemoval = true)
List<StandaredPrice> standaredPriceList = new ArrayList<>();

09-08 06:10