作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
做符合 javax.transaction.Transaction
的实现需要线程安全吗?
这个实现是否有望处理来自不同线程的并发请求?
举个例子:
// Thread A
transaction.commit();
// Thread B, while that commit is still running
transaction.setRollbackOnly();
我问这个问题是因为我可以看到 Infinispan 以这种方式与事务管理器交互,这会导致死锁。我想了解这是否是 Infinispan 或事务管理器中的错误。
最佳答案
JTA说,那:
§3.3 - 交易接口(interface)
The
Transaction.commit
andTransaction.rollback
methods allow the target object to be comitted or rolled back. The calling thread is not required to have the same transaction associated with the thread. If the calling thread is not allowed to commit the transaction, the transaction manager throws an exception.
javax.transaction.Transaction
的线程安全实现。 .
关于java - 接口(interface) javax.transaction.Transaction 的实现是否需要线程安全?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63717255/
我是一名优秀的程序员,十分优秀!