现在,我使用 EhCache 2 和 Atomkios 作为 JTA 提供者。我可以如下配置事务管理器。
FactoryConfiguration config = new FactoryConfiguration();
config.setProperties("jndi=java:comp/UserTransaction");
config.setPropertySeparator("=");
config.setClass("net.sf.ehcache.transaction.manager.DefaultTransactionManagerLookup");
ehCacheConfig.transactionManagerLookup(config);
现在,我计划迁移到 EHCache 3,但是我发现 Bitronix 仅支持 JTA 作为开箱即用。http://www.ehcache.org/documentation/3.0/xa.html
任何人都可以帮助使用 EhCache 3 配置 Atomikos 吗?