-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpersistence.xml
More file actions
17 lines (16 loc) · 828 Bytes
/
persistence.xml
File metadata and controls
17 lines (16 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="3.0" xmlns="https://jakarta.ee/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/persistence
https://jakarta.ee/xml/ns/persistence/persistence_3_0.xsd">
<persistence-unit name="BEACON_NETWORK" transaction-type="RESOURCE_LOCAL">
<non-jta-data-source>java:jboss/datasources/BeaconNetwork</non-jta-data-source>
<class>es.bsc.inb.ga4gh.beacon.network.log.BeaconLogEntity</class>
<properties>
<!--
<property name="jakarta.persistence.schema-generation.database.action" value="create"/>
-->
<property name="hibernate.hbm2ddl.auto" value="update" />
</properties>
</persistence-unit>
</persistence>