`
bnmnba
  • 浏览: 293574 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论

hibernate报错:Cannot add or update a child row: a foreign key constraint fails

 
阅读更多

我遇到这个问题的原因是:把主键作为外键关联到了其他表的主键。

在实体Product:

 

package pp.entity;

import java.util.ArrayList;
import java.util.List;

import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.DiscriminatorColumn;
import javax.persistence.DiscriminatorType;
import javax.persistence.DiscriminatorValue;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import javax.persistence.JoinColumn;
import javax.persistence.JoinTable;
import javax.persistence.ManyToMany;
import javax.persistence.OneToMany;
import javax.persistence.Table;


@Entity
@Table
@Inheritance(strategy=InheritanceType.SINGLE_TABLE) 
@DiscriminatorColumn(name="type",discriminatorType=DiscriminatorType.STRING)  
@DiscriminatorValue("product")
public class Product extends Goods{

	@OneToMany(targetEntity=ProductAssembleRecord.class,fetch=FetchType.LAZY,cascade={CascadeType.PERSIST,CascadeType.MERGE})
	@JoinColumn(name="productAssembleId",insertable=true,updatable=true)//成功的
	private List<ProductAssembleRecord> productAssembleRecords=new ArrayList<ProductAssembleRecord>();
	//.....
	
}

 配置一对多时:@JoinColumn(name="productAssembleRecordId",insertable=true,updatable=true)(错误的。)

 

 

实体ProductAssembleRecord:

 

@Entity
@Table
public class ProductAssembleRecord implements IEntity {
	@Id
	@GeneratedValue(strategy=GenerationType.AUTO)
	private int  productAssembleRecordId;
//......
}
 

看起来这样的配置会导致ProductAssembleRecord的主键productAssembleRecordId会作为外键映射到实体Product的主键goodsId(这个是其父类的主键,同一个表所以共享,不用管它)。我如果插入第一个ProductAssembleRecord没有问题,因为productAssembleRecordId能找到一个goodsId(只有一条数据)来外键关联。第二次就会失败,因为主键会自动增长。

解决:把@JoinColumn(name="productAssembleRecordId",insertable=true,updatable=true)

换做:@JoinColumn(name="productAssembleId",insertable=true,updatable=true)

从新建立表结构。ok。实体ProductAssembleRecord对应的表多了一个叫productAssembleId列(我的表结构是用实体生成的)。

 

分享到:
评论

相关推荐

    MySQL删除表的时候忽略外键约束的简单实现

    当尝试删除一个表而该表包含其他表所依赖的字段时,MySQL会抛出错误1217(23000),提示“Cannot delete or update a parent row: a foreign key constraint fails”。为了解决这个问题,我们可以利用MySQL中的一个...

    Navicat删除行时报Cannot delete or update a parent row: a foreign key constraint fails

    在SSM项目中执行一个删除用户操作时报错,遂在navicat中尝试是否可以直接删除,报如下所示错误 student表的主键是selectedcourse表的外键,当需要删除student表内的一行数据时,必须在selectedcourse表内设置该外键...

    MySQL添加外键时报错:1215 Cannot add the foreign key constraint的解决方法

    这篇文章主要涉及到在数据创建表时,遇到ERROR 1215 (HY000): Cannot add foreign key constraint 问题方面的内容,对于在数据创建表时,遇到同样问题感兴趣的同学可以参考一下。 一、问题的提出 创建两个表:  ...

    解决django 新增加用户信息出现错误的问题

    (1452, 'Cannot add or update a child row: a foreign key constraint fails (`mxonline`.`django_admin_log`, CONSTRAINT `django_admin_log_user_id_c564eba6_fk_auth_user_id` FOREIGN KEY (`user_id`) ...

    Foreign Key Constraint Fails(亲测可用).md

    Foreign Key Constraint Fails(亲测可用).md

    MySQL删除有外键约束的表数据方法介绍

    当试图删除一个被其他表的外键引用的行时,MySQL会抛出错误[Err] 1451,提示“Cannot delete or update a parent row: a foreign key constraint fails”,阻止操作执行,以防止破坏数据的完整性。 解决这个问题的...

    SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry ‘a3b6420a-6’ for key ‘callId’

    "SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'a3b6420a-6724-11ea-b2a3-d773d1d6999f' for key 'callId'\nThe SQL being executed was: INSERT INTO `ly_call` (`call_id`, `mobile`, ...

    大牛总结 MySql常见错误集锦

    9. 错误1452: Cannot add or update a child row: a foreign key constraint fails 外键约束失败通常发生在尝试删除或更新父表中的记录,而子表中仍有关联的记录。在执行操作前,先检查并处理好外键约束。 10. 错误...

    MySQL常见出错代码速查表

    7. 错误代码1452: "Cannot add or update a child row: a foreign key constraint fails",意味着你尝试添加或更新的数据违反了外键约束,父表中没有对应的记录。 8. 错误代码1366: "Incorrect integer value: '...

    SSH异常总结

    持久化异常是指在使用 Mybatis 更新数据库时,报错 Cannot delete or update a parent row: a foreign key constraint fails。这种异常的原因是因为在更新 user 表时,未更改外键值 user_id,导致外键约束失败。解决...

    sql关闭与开启

    Cannot delete or update a parent row: a foreign key constraint fails (...) 这可能是MySQL在InnoDB中设置了foreign key关联,造成无法更新或删除数据。可以通过设置FOREIGN_KEY_CHECKS变量来避免这种情况。 SET ...

    constraint-layout-solver-1.0.0-alpha1

    Failed to resolve: com.android.support.constraint:constraint-layout:1.0.0-alpha1

    Django ForeignKey与数据库的FOREIGN KEY约束详解

    在Django框架中,`ForeignKey`是一个非常重要的字段类型,用于建立两个模型之间的关联,它在概念上等同于数据库中的`FOREIGN KEY`约束。然而,两者在实际使用中有一定的区别。`ForeignKey`在Django中主要是逻辑层面...

    SSD7 选择题。Multiple-Choice

    The foreign key in a table T1 _____ the same _____ as the corresponding primary key in table T2. must have, name need not have, name must have, domain (a) I, II, and III (b) I and II (c) ...

    INSERT语句与FOREIGN KEY约束冲突

    在SQL数据库设计中,FOREIGN KEY约束是一种重要的机制,它用于维护数据的引用完整性,确保表之间的关联数据是有效的。当我们尝试使用INSERT语句插入数据时,如果违反了FOREIGN KEY约束,就会出现“INSERT语句与...

    数据库技术与应用 foreign key-D.doc

    在数据库技术中,外键(Foreign Key)是一个重要的概念,它是关系数据库模型中用来实现数据表之间关联的机制。本文将深入探讨外键的含义、作用、定义方式以及如何在SQL语言中创建和使用外键。 一、外键的含义与作用...

    mysql面试题(4)

    DROP FOREIGN KEY constraint_name; ``` 3. MySQL 批量更新操作 在 MySQL 中,可以使用`UPDATE`语句结合`CASE`语句来执行批量更新操作。例如,要根据条件更新多个行: ``` UPDATE table_name SET column_name = ...

    mysql级联更新和级联删除

    错误提示:`Cannot delete or update a parent row: a foreign key constraint fails`. 5. **移除外键约束**: - 可以通过ALTER TABLE命令移除已有的外键约束。 ```sql ALTER TABLE xiaodi DROP FOREIGN KEY ...

Global site tag (gtag.js) - Google Analytics