Class WebSphereTmFactory
- java.lang.Object
- 
- org.apache.ignite.cache.jta.websphere.WebSphereTmFactory
 
- 
- All Implemented Interfaces:
- Serializable,- javax.cache.configuration.Factory<javax.transaction.TransactionManager>
 
 public class WebSphereTmFactory extends Object implements javax.cache.configuration.Factory<javax.transaction.TransactionManager> Implementation of Transaction Manager factory that should used within WebSphere Application Server ("full profile" / "traditional" WS AS).Notes: - 
     WebSphereLibertyTmFactoryshould be used within WebSphere Liberty.
- The implementation has been tested with WebSphere Application Server 8.5.5.
 Java ConfigurationIgniteConfiguration cfg = new IgniteConfiguration(); TransactionConfiguration txCfg = new TransactionConfiguration(); txCfg.setTxManagerFactory(new WebSphereTmFactory()); cfg.setTransactionConfiguration(new txCfg); Spring Configuration<bean id="ignite.cfg" class="org.apache.ignite.configuration.IgniteConfiguration"> ... <property name="transactionConfiguration"> <bean class="org.apache.ignite.cache.jta.websphere.WebSphereTmFactory"/> </property> ... </bean>  
 For information about Spring framework visit www.springframework.org*- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description WebSphereTmFactory()
 
-