我如何达到相当于这个代码:
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一起执行?