我正在@Stateless
休息资源中的 WildFly 9.0.2 上实现不可重复读取隔离级别
- 线程 A 正在读取一个
Account
实体,打印余额,然后做一些其他工作(睡眠)。 - 线程 B 进来并读取相同的
Account
实体,打印余额并通过以下方式计算余额calculateBalance()
方法计算余额,然后更新实体。它再次读取实体并打印出余额。 - 然后线程 A 读取实体并打印出余额。
根据我对不可重复读取级别的理解,线程 B 应该阻塞,直到线程 A 完全完成(退出事务/无状态休息资源)。
这是打印输出:
- 线程 A:printBalance=500
- 线程 B:printBalance=500
- 线程 B:printBalance=600
- 线程 A:printBalance=500
从那里我可以看到线程 B 没有阻塞,即使线程 A 仍然很忙,它也被允许运行。
下面是代码:
@GET
@Path("/{accountId}/{threadName}")
public Response calculcateBalance(@PathParam("accountId") Long accountId, @PathParam("threadName") String threadName) {
Account account = em.find(Account.class, accountId);
printBalance(account,threadName);
if ("ThreadA".equals(threadName)) {
sleepSeconds(10);
} else if ("ThreadB".equals(threadName)) {
account.calculateBalance();
em.merge(account);
}
account = em.find(Account.class, accountId);
printBalance(account,threadName);
return Response.ok().build();
}
如果我将隔离级别更改为可序列化,一切都会阻塞。
我对不可重复阅读的理解是错误的吗?线程 B 是否应该在线程 A 完成之前不被阻塞?