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

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

出现这种错误的根本原因是query得到一个对象A,然后update时又新建了一个对象B,虽然新建对象B的主键值取的对象A的值,但他们仍然是两个对象,这样update时就会报错。

解决办法:
一、不用创建对象B,要修改记录时,直接reset对象A的属性,然后update对象A

二、用merge不用update
Test obj = new Test();
...
getSession().flush();   
getSession().clear();   
        //不要用update()方法   
getHibernateTemplate().merge(obj); 


但建议用方法一比较好

你可能感兴趣的:(object)