- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我得到以下堆栈跟踪:
org.springframework.orm.hibernate3.HibernateOptimisticLockingFailureException: Object of class [com.btfin.wrapcore.request.MFRequest] with identifier [2850448]: optimistic locking failed; nested exception is org.hibernate.StaleObjectStateException: Row was updated or deleted by another transaction (or unsaved-value mapping was incorrect): [com.btfin.wrapcore.request.MFRequest#2850448]
at org.springframework.orm.hibernate3.SessionFactoryUtils.convertHibernateAccessException(SessionFactoryUtils.java:672)
at org.springframework.orm.hibernate3.HibernateTransactionManager.convertHibernateAccessException(HibernateTransactionManager.java:793)
HibernateOptimisticLockingFailureException
这样的数据库异常的模式是什么?通过 Spring 和 hibernate 冒泡并返回关闭的连接?
最佳答案
Hibernate Docs明确声明,如果在使用 Session 时发生任何异常,则 Session 之后不能重用。此外,每个 Session 可以包含多个事务,并且在每个事务提交后 - 同样发生,连接关闭。
但是在使用连接池时,连接并没有真正关闭,当调用 close() 方法时,connection is returned to the pool without physical closing :
when an application closes its connection, the underlying physical connection is recycled rather than being closed.
关于spring - HibernateOptimisticLockingFailureException 将连接标记为 'closed' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10406746/
更新对象时出现以下异常。 HibernateOptimisticLockingFailureException: Object of class [User] with identifier [256
我在 Hibernate 中有一个持久的 hibernate 管理的@entity Obj,它有字段 id、fieldA 和 fieldB 等。 在某些类中,我有两个@Transactional 方法
我得到以下堆栈跟踪: org.springframework.orm.hibernate3.HibernateOptimisticLockingFailureException: Object of
运行getsession.update(data)时出现以下错误; org.springframework.orm.hibernate4.HibernateOptimisticLockingFailu
我已经尝试了很多小时来弄清楚为什么我无法解决这个问题,但无济于事。 基本上,我有一个域类(PrizeSchedule),它在我的应用程序中用于安排何时发放奖品。当一个请求进来并且是时候发放奖品(预定时
我是一名优秀的程序员,十分优秀!