17 lines
881 B
XML
17 lines
881 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<persistence xmlns="http://xmlns.jcp.org/xml/ns/persistence"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_2.xsd"
|
||
|
version="2.2">
|
||
|
<persistence-unit name="MoviesPU">
|
||
|
<jta-data-source>java:jboss/datasources/MoviesDS</jta-data-source>
|
||
|
<jar-file>lib/NewsCommon-1.0.0-SNAPSHOT.jar</jar-file>
|
||
|
<exclude-unlisted-classes>false</exclude-unlisted-classes>
|
||
|
<properties>
|
||
|
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQL8Dialect"/>
|
||
|
<property name="hibernate.show_sql" value="true" />
|
||
|
<property name="hibernate.hbm2ddl.auto" value="update"/>
|
||
|
</properties>
|
||
|
</persistence-unit>
|
||
|
</persistence>
|