Ravi Srinivasan
2018-09-13 615c1a9a918d5aba6e88aad3ca13795a89ff8149
commit | author | age
aaf094 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">
6     <persistence-unit name="hello" transaction-type="JTA">
615c1a 7         <jta-data-source>java:jboss/datasources/ExampleDS</jta-data-source>
aaf094 8         <properties>
RS 9                 <property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect" />
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" />
13     </properties>
14     </persistence-unit>
15 </persistence>