延迟加载问题何时将子项添加到父级 - 休眠

时间:2015-01-15 02:41:35

标签: java hibernate jpa orm hibernate-mapping

我有两个类:Bundle和Commodity,它们被定义为双向关系。假设我只有1个Bundle实体和0个Commodity实体。我怎样才能创造商品并建立商品与捆绑之间的关系?

@OneToMany(mappedBy="id", fetch=FetchType.LAZY, cascade=CascadeType.ALL)
List<Commodity> commodityList;

@ManyToOne
@JoinColumn(name="BUNDLE_ID")
private Bundle bundle;

在我的服务类中,我试过这个:

// Add commodity instance to exiting bundle.
public void addCommodityToBundle(Bundle bundle, Commodity commodity) {
    LOGGER.info("Create and Persist Commodity Instance to Bundle Entity");
    Bundle attachBundle = bundleDao.merge(bundle);

    attachBundle.getCommodityList().add(commodity);
    commodity.setBundle(attachBundle);
    bundleDao.update(attachBundle);
}

通过上述方法,我对第一轮运行没有任何问题。但是对于其他运行,我得到了DataIntegrityException,原因是:

Caused by: org.postgresql.util.PSQLException: ERROR: insert or update on table "commodity" violates foreign key constraint "fk_imi7xke3iqtx6d3g7ceqfs7ud"
  Detail: Key (id)=(2) is not present in table "bundle".

如果我再次运行测试,我会得到

 Detail: Key (id)=(3) is not present in table "bundle".

我不知道为什么它一直试图与不存在的实体建立关系。我已经让很多记录器尝试调试并确保捆绑包存在于表中。知道我应该如何纠正实施?

1 个答案:

答案 0 :(得分:1)

@OneToMany mappedBy映射错误。

而不是:

@OneToMany(mappedBy="id", fetch=FetchType.LAZY, cascade=CascadeType.ALL)
List<Commodity> commodityList;

你应该:

@OneToMany(mappedBy="bundle", fetch=FetchType.LAZY, cascade=CascadeType.ALL)
List<Commodity> commodityList;