a different object with the same identifier value was already associated with the session

来源:互联网 发布:python 卡尔曼滤波 编辑:程序博客网 时间:2024/06/11 23:10

a different object with the same identifier value was already associated with the session

假设:A对象的主键id为1,并且已经绑定到了hibenate的session中。

           这时又来了一个B对象,它的主键也为1。

           当将B对象也邦定到session的使用,hibernate就会报这个错误。

原因是: A对象与B对象不是同一个对象,还都想让session管理,并映射到数据库的同一条记录上,这时hibernate不知道要哪一个对象了。


org.springframework.orm.hibernate3.HibernateSystemException: a different object with the same identifier value was already associated with the session: [com.emar.eqifa.domain.SuperRebateProduct#696]; nested exception is org.hibernate.NonUniqueObjectException: a different object with the same identifier value was already associated with the session: [com.emar.eqifa.domain.SuperRebateProduct#696]
    at org.springframework.orm.hibernate3.SessionFactoryUtils.convertHibernateAccessException(SessionFactoryUtils.java:661)
    at org.springframework.orm.hibernate3.HibernateAccessor.convertHibernateAccessException(HibernateAccessor.java:412)
    at org.springframework.orm.hibernate3.HibernateTemplate.doExecute(HibernateTemplate.java:424)
    at org.springframework.orm.hibernate3.HibernateTemplate.executeWithNativeSession(HibernateTemplate.java:374)
    at org.springframework.orm.hibernate3.HibernateTemplate.saveOrUpdate(HibernateTemplate.java:744)
    at com.emar.framework.hibernate.HibernateDao.saveOrUpdateEntity(HibernateDao.java:93)
    at com.emar.eqifa.hibernate.SuperRebateProductHomeImpl.saveSuperRebateProduct(SuperRebateProductHomeImpl.java:29)
    at com.emar.eqifa.facade.SuperRebateProductFacadeImpl.addSuperRebateProduct(SuperRebateProductFacadeImpl.java:95)
    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.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:106)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:50)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)



0 0
原创粉丝点击