gpt4 book ai didi

hibernate - 如何使用 Criteria API 指定悲观锁?

转载 作者:行者123 更新时间:2023-12-04 04:27:40 25 4
gpt4 key购买 nike

我正在使用 Criteria API 检索 hibernate 中的对象列表。但是我需要锁定这些对象,因为同时执行的另一个线程将获得确切的对象,并且只有一个线程会在没有悲观锁的情况下成功。

我试过如下,但它不工作。

List esns = session
.createCriteria(Reddy_Pool.class)
.add(Restrictions.eq("status", "AVAILABLE"))
.add(Restrictions.eq("name", "REDDY2"))
.addOrder(Order.asc("id"))
.setMaxResults(n)
.setLockMode(LockMode.PESSIMISTIC_WRITE) //not working at all
.list();

更新 :我在此语句之后执行更新,因此我希望两个线程都读取不同的行,或者至少第二个线程应该等到第一个线程完成事务并离开锁。

hibernate 生成的查询如下。
Hibernate: select this_.id as id1_0_, this_.name as name1_0_, 
this_.orderitem_id as orderitem3_1_0_, this_.status as status1_0_,
this_.store as store1_0_, this_.vendor as vendor1_0_, this_.version as version1_0_
from reddy_pool this_
where this_.status=? and and this_.name=? order by this_.id asc limit ?

更新 :这似乎是 Pascal Thivent(非常感谢 Pascal)提到的 3.5.2 版本中的一个错误,我已作为成员(member)加入并关注该问题。希望它会包含在下一个版本中。

但是我尝试在这里使用另一种方法 session.buildLockRequest() ...但我无法弄清楚如何使用它并且使用下面的代码根本没有任何效果。
for (int i=0; i < n; i++)
session.buildLockRequest(LockOptions.UPGRADE).lock(esns.get(i));

最佳答案

您使用的是什么版本的 hibernate ?这可能是HHH-5275 ?您确定 FOR UPDATE没有生成语句?你能显示生成的SQL吗?

关于hibernate - 如何使用 Criteria API 指定悲观锁?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3028478/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com