argos/dmp-backend/web/src/main/resources/META-INF/persistence.xml

14 lines
773 B
XML
Raw Normal View History

<?xml version="1.0"?>
<persistence version="2.1" 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://www.oracle.com/webfolder/technetwork/jsc/xml/ns/persistence/persistence_2_1.xsd">
2018-02-16 11:34:02 +01:00
<persistence-unit name="DMPBackendPersistence">
<description>Persistence unit for DPM Backend</description>
<!-- <provider>org.hibernate.ejb.HibernatePersistence</provider> --> <!--this is for hibernate versions before 5.2.1 -->
<provider>org.hibernate.jpa.HibernatePersistenceProvider
</provider> <!-- this is for hibernate versions after 5.2.1 -->
</persistence-unit>
</persistence>