Created
October 2, 2015 15:13
-
-
Save iconte/1738f3b017f654c7c764 to your computer and use it in GitHub Desktop.
jta persistence mysql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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