JTA

在 JEE 容器中使用 Ebean 时,我们可以指定使用容器管理的 JTA 事务。

为此,通过以下方式将 JtaTransactionManager 设置为外部事务

DatabaseConfig config = new DatabaseConfig();

// set JtaTransactionManager as the external transaction manager
config.setExternalTransactionManager(new JtaTransactionManager());