如何在同一 TX 中发生 OptimisticLockException 后重试更新

发布于 2024-10-20 08:16:48 字数 199 浏览 1 评论 0原文

在我的程序中,我需要能够在外部事务更新行后重试行更新。 Hibernate/JPA 抛出 OptimisticLockException,我捕获了它。 重试时,我尝试通过 JPQL/HQL 从数据库重新读取行,但 select 语句生成相同的 OptimisticLockException。 有没有办法重新读取该行的最新版本并在同一个事务中更新它?

In my program I need to be able to retry row update after the row was updated by an external transaction. Hibernate/JPA throws OptimisticLockException, which I catch.
Upon retry I try to re-read the row from DB through JPQL/HQL but the select statement generates the same OptimisticLockException.
Is there any way to re-read the latest version of the row and update it in THE SAME transaction?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忆伤 2024-10-27 08:16:48

Session.refresh(object)Session.lock() 可能比较合适。

Session.refresh(object) or Session.lock() would probably be appropriate.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文