Hiberate 更新时报错 a different object with the same identifier value was already associated with the session

使用的是Hibernate框架,Service类里有这样一个方法:

 1 public boolean saveOrUpdateTroop(TroopsInfo o, Boolean save) {

 2         if (save) {

 3             Map<String, Boolean> existeds = this.troopsDAO.getExisted();

 4             Boolean flag = existeds.get(o.getName());

 5             if (flag != null && flag) {

 6                 return false;//存在相同名称的应急队伍

 7             }

 8             this.troopsDAO.saveOrUpdate(o);

 9         }else {//更新

10             TroopsInfo old = this.troopsDAO.findUniqueBy("id", o.getId());

11             if (old.getName().equals(o.getName())) {

12                 //同步更新到应急组织下的人员信息

13                 this.troopsDAO.saveOrUpdate(o);

14             }else {//需要检查姓名是重复

15                 Map<String, Boolean> existeds = this.troopsDAO.getExisted();

16                 Boolean flag = existeds.get(o.getName());

17                 if (flag != null && flag) {

18                     return false;//存在相同名称的应急队伍

19                 }

20                 this.troopsDAO.saveOrUpdate(o);

21             }

22             this.emergencyPersonDAO.updateEPerson(o.getId(), o.getName(), o.getContact());

23         }

24         

25         return true;

26     }

实际执行的时候会在第13行(根据前面的条件跳转到这里)报错:a different object with the same identifier value was already associated with the session。

解决方法:后来改成merge()方法就可以了。

原因:从上下文来看,这里在保存前先去数据库中取了一次数据(放session缓存里),然后在保存的。根据hibernate的官方文档里,这样描述update的:

Update the persistent instance with the identifier of the given detached instance,if there is a persistent instance with the same identifier,an exception is thrown.所以上面的错误就很好得被解释了。

同样,hibernate的merge方法的解释是:copy the state of the given object onto the persistent object with the same identifier,if there is no persistent instance currently associated with the session,

it will be loaded...

还有一种解决方法:refresh()或者clean(),但是会报其他的错误,所以不建议用。

 

你可能感兴趣的:(session)