hibernate cascade 级联保存失败

使用annotation,一对一关联,主键生成策略为assigned,出现如下异常

Caused by: java.sql.BatchUpdateException: Cannot add or update a child row: a foreign key constraint fails

 猜测原因,hibernate如果发现entry 有ID的话,就判断对entry进行级联update,而不是进行insert。

修改主键生成策略可以解决问题,或者显示地先把关联对象save,然后再save实体。

相关推荐