我正在开发基于Spring的Atomikos应用程序作为独立的JTA。 我的bean的方法在JBoss上使用无状态远程EJB“xEJB”。
public void methodA() {
//some actions
xEJB.remoteMethod();
//some actions that may throw an exception
}
我想在异常的情况下回滚“remoteMethod”。换句话说,从spring bean控制远程服务器ejb上的事务提交和回滚。是可能还是好主意?实现它的最佳方法是什么?