我需要将我的一个应用程序从 Websphere(6.1) 迁移到 JBoss (EAP 5.1) 。应用程序现在使用以下代码获取 WebsphereTransactionManager 对象并执行挂起和恢复操作
com.ibm.ws.Transaction.WebSphereTransactionManager txMgr = com.ibm.ws.Transaction.TransactionManagerFactory.getTransactionManager(); javax.transaction.Transaction thisTx = null;
thisTx = txMgr.suspend();
// 执行非事务性操作的代码
txMgr.resume(thisTx);
如何在 Jboss 中获取 TransactionManager 对象?请问有示例代码吗?