我需要将我的一个应用程序从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对象?请问任何示例代码?
答案 0 :(得分:4)
您可以利用JBoss Windup(http://windup.jboss.org)来帮助您解决此问题和其他迁移问题。只需在源代码或存档上运行Windup。查看“指南”部分下的视频以获取更多帮助。