Skip to content

Instantly share code, notes, and snippets.

@iconte
Created October 2, 2015 15:13
Show Gist options
  • Select an option

  • Save iconte/1738f3b017f654c7c764 to your computer and use it in GitHub Desktop.

Select an option

Save iconte/1738f3b017f654c7c764 to your computer and use it in GitHub Desktop.
jta persistence mysql
<persistence-unit name="tramponaweb" transaction-type="JTA">
<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
<jta-data-source>jdbc/tramponaweb</jta-data-source>
<exclude-unlisted-classes>false</exclude-unlisted-classes>
<properties>
<property name="eclipselink.logging.level" value="INFO"/>
<property name="eclipselink.target-database" value="MySQL"/>
<property name="eclipselink.profiler" value="NoProfiler"/>
<property name="eclipselink.logging.logger" value="JavaLogger"/>
</properties>
</persistence-unit>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment