Ravi Srinivasan
2018-09-13 c7b9c849bf5207656f5694132ec63c5194b34fff
commit | author | age
41d500 1 <?xml version="1.0" encoding="UTF-8"?>
RS 2 <persistence version="2.1"
3              xmlns="http://xmlns.jcp.org/xml/ns/persistence"
4              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5              xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
c7b9c8 6     <persistence-unit name="hello" transaction-type="JTA">
RS 7         <jta-data-source>java:jboss/datasources/ExampleDS</jta-data-source>
41d500 8         <properties>
c7b9c8 9                 <property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect" />
RS 10                 <property name="hibernate.hbm2ddl.auto" value="create-drop" />
11                 <property name="hibernate.show_sql" value="true" />
12                 <property name="hibernate.format_sql" value="true" />
41d500 13     </properties>
RS 14     </persistence-unit>
15 </persistence>