java lockmodetype_java – 如何使用Spring Data JPA查找实体时如何启用LockModeType.PESSIMISTIC_WRITE?...

我如何达到相当于这个代码:

tx.begin();

Widget w = em.find(Widget.class, 1L, LockModeType.PESSIMISTIC_WRITE);

w.decrementBy(4);

em.flush();

tx.commit();

…但是使用Spring和Spring-Data-JPA注释?

我现有的代码的基础是:

@Service

@Transactional(readOnly = true)

public class WidgetServiceImpl implements WidgetService

{

/** The spring-data widget repository which extends CrudRepository. */

@Autowired

private WidgetRepository repo;

@Transactional(readOnly = false)

public void updateWidgetStock(Long id, int count)

{

Widget w = this.repo.findOne(id);

w.decrementBy(4);

this.repo.save(w);

}

}

但是我不知道如何指定updateWidgetStock方法中的所有内容都应该用悲观的锁定来完成。

有一个Spring Data JPA注释org.springframework.data.jpa.repository.Lock,它允许您设置一个LockModeType,但我不知道它是否有效将其放在updateWidgetStock方法上。这听起来更像是WidgetRepository上的注释,因为Javadoc说:

org.springframework.data.jpa.repository

@Target(value=METHOD)

@Retention(value=RUNTIME)

@Documented

public @interface Lock

Annotation used to specify the LockModeType to be used when executing the query. It will be evaluated when using Query on a query method or if you derive the query from the method name.

所以这似乎没有帮助。

如何使我的updateWidgetStock()方法与LockModeType.PESSIMISTIC_WRITE一起执行?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值