Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过 Solace 找到具有 XA 事务的 JMS 实现的有用示例
Solace JMS APIXATransactions.java在示例目录中包含一个示例,该示例显示了如何在应用程序中使用 XA 事务。
XATransactions.java
请注意,示例代码是通过调用相关XAResource方法来手动管理 XA 事务,例如XAResource.commit(). XA 事务通常在包含事务管理器的 Java EE 应用程序服务器中使用,以管理 XA 事务的生命周期。
XAResource
XAResource.commit()