Do not use unsupported JTA Transaction Manager

This rule flags spring beans in a Spring configuration file with any of the following classes:

The bean in the following example Spring configuration file would be flagged because the class is org.springframework.transaction.jta.JtaTransactionManager

<bean id="txMgr" class="org.springframework.transaction.jta.JtaTransactionManager">
</bean>

The automated fix will change the class name to: org.springframework.transaction.jta.WebSphereUowTransactionManager .

For additional information, see: