我有两个类: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条答案
按热度按时间mklgxw1f1#
这个
@OneToMany
mappedBy
Map错误。而不是:
你应该有: