I looked at a few examples for setting up a data source for MySQL in Jboss 7. All the links that I saw for the item look like this:
<driver name="com.mysql" module="com.mysql">
<driver-class>com.mysql.jdbc.Driver</driver-class>
<xa-datasource-class>com.mysql.jdbc.jdbc2.optional.MysqlXADataSource</xa-datasource-class>
</driver>
I know what it is <driver-class>, but what is <xa-datasource-class>its purpose?
When I set up the data source on Tomcat, before I needed to specify xa-datasource for any database. Why is it different here?
thank
ziggy source
share