org.springframework.orm.hibernate3.HibernateSystemException: Found two represent

org.springframework.orm.hibernate3.HibernateSystemException: Found two representations of

same collection:
com.kuandai.t4.pojo.UserInfo.moveInfos; nested exception is org.hibernate.HibernateException: Found

two representations of same collection:
com.kuandai.t4.pojo.UserInfo.moveInfos
Caused by: org.hibernate.HibernateException: Found two representations of same collection:
com.kuandai.t4.pojo.UserInfo.moveInfos
问题原因:UserDao中的updateUser方法中,更改应用super.getHibernateTemplate().saveOrUpdate(user);
          而不是之前的super.getHibernateTemplate().save(user);
save,update,saveOrUpdate的区别:
session.save
1.在session内部缓存中查找待保存对象,即使数据相对以前状态已经发生变化。也将在稍后事务提交时,由脏数据

检查过程加以判定。(有点不懂)
2。如果实体类实现了lifecycle 接口,则调用待保存对象的onsave 方法
3.如果实体类实现了validateble 接口,则调用其validate() 方法。
4。调用对应拦截器的Interceptor.onSave 方法(如果有)
5。构造insert sql 并执行
6。记录插入成功,user.id属性被设定为insert操作返回的新纪录id值。
7。将user 对象放入内部缓存。
8。最后,如果存在级联关系,对级联关系进行递归处理。
session.update
1.首先,根据代更新实体对象的key ,在当前session的内部缓存中进行查找。如果发现,则认为当前实体对象已经

处于persistent 状态。
2。初始化实体对象的状态信息(作为以后脏数据检查的依据),并将其纳入内部缓存。
   (这里并没有发送update sql ) ,update sql 在session.flush方法中执行。
session.saveorupdate
1.首先在session 内部缓存中进行查找,发现则直接返回。
2。执行实体类对应的Interceptor.isUnsaved 方法(如果有),判断对象是否为未保存状态。
3。根据upsaved-value判断对象是否处于未保存状态。
4。如果对象未保存(Transient状态),则调用save 方法。
5。如果为已保存(Detached),调用update 方法将对象与session 重新关联。
saveOrUpdate 实际是save 和update 方法的组合应用。
当前数据是transient 状态,我们应该调用save 方法,如果是detached 状态,则应该先通过session.update方法

更新。
使用saveOrUpdate 方法后,就不用判断当前对象的状态了。

你可能感兴趣的:(sql,Hibernate,orm)