Row was updated or deleted by another transaction (or unsaved-value mapping was incorrect) 异常原因及处理

主因 : 事务对程序的影响

原因一:  查询出来的对象和update的对象不是同一个

解决: 用查询出的对象进行set 值, 再用同一个对象update

原因二: 查询出来的对象在缓存中一段时间 , 之后再进行的update

解决: 把这个对象从缓存中剔除(如需要对象属性可先get保存到变量中) , 在update之之前再查询出来进行update

原因三:  同一对象查询了多次 , 数据还在缓存中没有清除.

解决:  清除缓存中的对象

 

转自:https://blog.****.net/LMAKE_nbsp/article/details/83654182

上一篇:遇见的异常及解决方法


下一篇:Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT