早教吧 育儿知识 作业答案 考试题库 百科 知识分享

Hibernateexception:adifferentobjectwiththesameidentifiervaluewasalreadyassociatedwithth当出现adifferentobjectwiththesameidentifiervaluewasalreadyassociatedwiththesession时,一般是因为在hibernate中同一个session

题目详情
Hibernate exception: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时,一般是因为在hibernate中同一个session里面有了两个相同标识但是是不同实体。 我测试了网上所有的解决方案,包括: (1)使用session.clean(),如果在clean操作后面又进行了saveOrUpdate(object)等改变数据状态的操作,有可能会报出"Found two representations of same collection"异常。 (2)使用session.refresh(object),当object不是数据库中已有数据的对象的时候,不能使用 session.refresh(object)因为该方法是从hibernate的session中去重新取object,如果session中没有这个对象,则会报错所以当你使用saveOrUpdate(object)之前还需要判断一下。 (3)session.merge(object),Hibernate里面自带的方法,推荐使用。 最后发现只有session.clear()可行,但是项目要求不能使用session.clear(),大家有什么好的想法能帮助下吗,谢谢
▼优质解答
答案和解析
你用查出来的最新的对象,向数据库里插入.虽然麻烦,但是可以奏效