`
wenlongsust
  • 浏览: 71870 次
  • 性别: Icon_minigender_1
  • 来自: 西安
文章分类
社区版块
存档分类
最新评论

Hibernate保存数据自动生成主键出现奇怪异常Duplicate entry '0' for key 1

 
阅读更多

今天在写一块程序的时候,出现了一个异常信息,捣鼓了一上午,终于找到了异常原因——不仅仅是简单的主键冲突问题

测试数据库:MySQL

异常信息如下:

org.hibernate.exception.ConstraintViolationException: could not insert: [org.xxx.entity.PropertyType]
	at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:94)
	at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:66)
	at org.hibernate.id.insert.AbstractReturningDelegate.performInsert(AbstractReturningDelegate.java:64)
	at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2176)
	at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2656)
	at org.hibernate.action.EntityIdentityInsertAction.execute(EntityIdentityInsertAction.java:71)
	at org.hibernate.engine.ActionQueue.execute(ActionQueue.java:279)
	at org.hibernate.event.def.AbstractSaveEventListener.performSaveOrReplicate(AbstractSaveEventListener.java:321)
	at org.hibernate.event.def.AbstractSaveEventListener.performSave(AbstractSaveEventListener.java:204)
	at org.hibernate.event.def.AbstractSaveEventListener.saveWithGeneratedId(AbstractSaveEventListener.java:130)
	at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.saveWithGeneratedOrRequestedId(DefaultSaveOrUpdateEventListener.java:210)
	at org.hibernate.event.def.DefaultSaveEventListener.saveWithGeneratedOrRequestedId(DefaultSaveEventListener.java:56)
	at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.entityIsTransient(DefaultSaveOrUpdateEventListener.java:195)
	at org.hibernate.event.def.DefaultSaveEventListener.performSaveOrUpdate(DefaultSaveEventListener.java:50)
	at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.onSaveOrUpdate(DefaultSaveOrUpdateEventListener.java:93)
	at org.hibernate.impl.SessionImpl.fireSave(SessionImpl.java:563)
	at org.hibernate.impl.SessionImpl.save(SessionImpl.java:551)
	at org.hibernate.impl.SessionImpl.save(SessionImpl.java:547)
	at org.xianfeng.hibernate.dao.HibernateDaoImpl.save(HibernateDaoImpl.java:110)
	at org.xianfeng.platform.property.service.impl.PropertyTypeServiceImpl.saveOrUpdate(PropertyTypeServiceImpl.java:58)
	at org.xianfeng.platform.test.TestPropTypeService.save(TestPropTypeService.java:31)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org.junit.internal.runners.TestMethod.invoke(TestMethod.java:59)
	at org.junit.internal.runners.MethodRoadie.runTestMethod(MethodRoadie.java:98)
	at org.junit.internal.runners.MethodRoadie$2.run(MethodRoadie.java:79)
	at org.junit.internal.runners.MethodRoadie.runBeforesThenTestThenAfters(MethodRoadie.java:87)
	at org.junit.internal.runners.MethodRoadie.runTest(MethodRoadie.java:77)
	at org.junit.internal.runners.MethodRoadie.run(MethodRoadie.java:42)
	at org.junit.internal.runners.JUnit4ClassRunner.invokeTestMethod(JUnit4ClassRunner.java:88)
	at org.junit.internal.runners.JUnit4ClassRunner.runMethods(JUnit4ClassRunner.java:51)
	at org.junit.internal.runners.JUnit4ClassRunner$1.run(JUnit4ClassRunner.java:44)
	at org.junit.internal.runners.ClassRoadie.runUnprotected(ClassRoadie.java:27)
	at org.junit.internal.runners.ClassRoadie.runProtected(ClassRoadie.java:37)
	at org.junit.internal.runners.JUnit4ClassRunner.run(JUnit4ClassRunner.java:42)
	at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:38)
	at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)
	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)
	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)
	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)
Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry '0' for key 1
	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
	at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
	at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
	at com.mysql.jdbc.Util.handleNewInstance(Util.java:406)
	at com.mysql.jdbc.Util.getInstance(Util.java:381)
	at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1015)
	at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:956)
	at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3491)
	at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3423)
	at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1936)
	at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2060)
	at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2542)
	at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1734)
	at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2019)
	at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1937)
	at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1922)
	at com.mchange.v2.c3p0.impl.NewProxyPreparedStatement.executeUpdate(NewProxyPreparedStatement.java:105)
	at org.hibernate.id.IdentityGenerator$GetGeneratedKeysDelegate.executeAndExtract(IdentityGenerator.java:94)
	at org.hibernate.id.insert.AbstractReturningDelegate.performInsert(AbstractReturningDelegate.java:57)
	... 40 more

通过异常信息可以确定——的确是数据库表的主键冲突了

但是定义主键的时候是指定为native自动生成的,可是为什么还会冲突呢?并且把hibernate的实体类映射文件修改为assigned还是会出现相同的异常,这就真是奇了怪了


在网上搜罗了一下,也有人遇到过Hibernate主键冲突的异常,通常的原因都是指定的主键相同或者没有把主键生成策略设置为native

可是我的程序明明都避免了这两个原因,为什么还是会出现了呢?


快中午的时候,无奈之下,全部删除重新写一遍的冲动都有,后来想了想还是先从头检查一遍吧。在检查的过程中,发现了主键冲突的真实原因——建表语句中的主键id没有自动增长,即没有指定为auto_increment


通过这次调试异常,似乎若有所思

1、Hibernate的异常机制还不是很完善,不能明确抛出具体的异常,以后在写框架的过程中也需要完善框架异常

2、解决问题要有一套好的方法,不到万不得已,不能删除重写,毕竟还是很耗费时间的

3、遇到问题要不烦不燥,虽然五一放假,但是也同样需要更多的耐心

。。。。。。



分享到:
评论

相关推荐

    mysql #1062 –Duplicate entry ‘1’ for key ‘PRIMARY’

    碰到了 #1062 – Duplicate entry ‘1′ for key ‘PRIMARY’ 当时那个急啊,原本的数据我已经全部删除了,没办法只有请求万能的百度了。我找了大半天终于给我给我找到了。兴奋ing,马上测试,O(∩_∩)O哈哈~成功了...

    mysql #1062 –Duplicate entry '1' for key 'PRIMARY'

    标题中的“mysql #1062 –Duplicate entry '1' for key 'PRIMARY'”是一个常见的MySQL错误信息,意味着在尝试插入新的数据记录时,遇到了主键冲突。主键是数据库表中唯一标识每条记录的一列或多列,其值必须在表内...

    mysql error:#1062 Duplicate entry ‘***′ for key 1问题解决方法

    MySQL 错误 #1062 - "Duplicate entry '***' for key 1" 是一个常见的数据库异常,通常表示尝试插入或更新的数据违反了唯一性约束。在这个特定的情况下,问题出现在一个具有自动增长特性的 `id` 字段上。这个错误...

    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中如何处理重复数据(Duplicate)?

    INSERT INTO table_name (col1, col2, col3) VALUES (val1, val2, val3) ON DUPLICATE KEY UPDATE col1 = new_val1, col2 = new_val2, col3 = new_val3; 这个语句首先尝试插入数据,如果遇到唯一键冲突,就会执行...

    Duplicate Entry(解决方案).md

    Duplicate Entry(解决方案).md

    mysql数据库Insert语句后面加ON DUPLICATE KEY UPDATE,保证唯一性1

    ON DUPLICATE KEY UPDATE`语句是一种非常实用的机制,它允许你在插入新行的同时处理可能出现的唯一性约束冲突。这个语句主要用于处理唯一索引(包括主键)的情况,当尝试插入的数据与现有数据冲突时,会触发更新已...

    Duplicate Entry(亲测可用).md

    Duplicate Entry(亲测可用).md

    Hibernate映射导致的几个异常

    标题与描述概述的知识点主要集中在Hibernate映射过程中可能遇到的各种异常情况,这涉及到数据库与对象模型之间的映射问题,以及Hibernate框架在处理这些映射时可能产生的错误。下面将对这些异常进行详细的解释和分析...

    [mysql]mysql通过on duplicate key update实现批量插入或更新(csdn)————程.pdf

    在MySQL数据库中,`ON DUPLICATE KEY UPDATE` 是一个非常实用的特性,它允许你在执行INSERT语句时,如果插入的数据违反了唯一性约束(即存在相同的唯一索引),则自动执行UPDATE操作来更新已有记录。这个功能在处理...

    Duplicate File Finder For Mac_v6.6

    Duplicate File Finder For Mac_v6.6是一款免费的重复文件查找软件,使用起来非常简单,只需要拖放任意数量的文件夹,然后单击扫描。在一分钟内,应用程序将按类别提供所有重复文件的报告:图片,视频,音乐,档案,...

    Mysql中Insert into xxx on duplicate key update问题

    ON DUPLICATE KEY UPDATE` 是一个非常实用的特性,它允许你在尝试插入新记录时,如果插入的数据违反了唯一性约束(如UNIQUE索引或PRIMARY KEY),则自动更新已经存在的匹配行,而不是抛出错误。这个特性是MySQL特有...

    MySQL唯一索引重复插入数据解决方案总结.docx

    会报错 Duplicate entry 'jf/IxWYA060PA' for key 'ixd_openid',表示不能在索引 ixd_openid 列上重复插入值 jf/IxWYA060PA。 解决这种情况可以使用两种方法:一是使用 ignore 语句,例如 insert ignore into ...

    配置mysql远程连接访问数据库 Navicat preium.docx

    但如果你遇到`Duplicate entry '%-root' for key 'PRIMARY'`的错误,意味着`root`用户已经存在,这时你应该指定原`host`值: ```sql UPDATE user SET host = '%' WHERE user = 'root' AND host = 'localhost'; `...

    MYSQL的REPLACE和ON DUPLICATE KEY UPDATE语句介绍解决问题实例

    MySQL中的`REPLACE`和`ON DUPLICATE KEY UPDATE`语句是处理数据插入时可能出现的唯一键冲突的有效方法。这两个语句主要用于更新已有记录或在出现冲突时替换原有记录。 **1. REPLACE语句** `REPLACE`语句在表中具有...

    Last_Errno: 1062,Last_Error: Error Duplicate entry

    在这个具体的问题场景中,我们可以看到错误信息提示了“Error Duplicate entry '250.1.1-rding-changelogs/myIDENTITY/250/xxxx.xml' for key 'PRIMARY'”,这表明尝试插入的数据在主键上与现有记录重复。...

    mysql ON DUPLICATE KEY UPDATE语句示例

    在MySQL数据库中,`ON DUPLICATE KEY UPDATE` 是一个非常实用的特性,它允许你在插入新数据时,如果遇到重复的唯一键值,自动执行更新操作,而不是抛出错误。这个功能大大简化了数据处理的流程,特别是当你需要在一...

    Duplicate__Net__Names__Wire解决办法

    这类错误通常出现在多张原理图的环境下,尤其是在涉及到网络标识符作用域的配置不当的情况下更为显著。本文旨在探讨这一问题的根本原因及其解决方案。 #### 二、错误产生的背景及原因分析 在Altium Designer中,...

Global site tag (gtag.js) - Google Analytics