加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

identifier of an instance of xxx was altered from 1 to 1

发布时间:2020-12-15 23:07:41 所属栏目:百科 来源:网络整理
导读:今天测试一个项目,这个项目使用了hibernate和spring,报错信息如下: org.springframework.orm.hibernate4.HibernateSystemException: identifier of an instance of com.tdr.push.entity.ThreadPushFail was altered from 1 to 1; nested exception is org

今天测试一个项目,这个项目使用了hibernate和spring,报错信息如下:

org.springframework.orm.hibernate4.HibernateSystemException: identifier of an instance of com.tdr.push.entity.ThreadPushFail was altered from 1 to 1; nested exception is org.hibernate.HibernateException: identifier of an instance of com.tdr.push.entity.ThreadPushFail was altered from 1 to 1

后来发现是因为实体类中id的属性和hbm.xml配置文件中id的属性不一致造成的。

我实体类中的id属性是:

public class ThreadPushFail {
	private long id;
	/***
	 * 推送消息的id
	 */
	private long pushMessageId;

hbm.xml配置文件中id的属性:

<hibernate-mapping>
    <class name="com.tdr.push.entity.ThreadPushFail" table="t_threadPushFail" lazy="true">
        <id name="id" type="int">
            <column name="ID" precision="19" scale="0">
                <comment>主键id</comment>
            </column>
            <generator class="identity"/>
        </id>

一个是int,一个是long

解决方案:是id的属性保持一致。

参考:http://www.52php.cn/article/p-hzgpvqlx-baw.html

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读