27 lines
1018 B
XML
27 lines
1018 B
XML
|
<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_1.xsd"
|
||
|
version="2.1">
|
||
|
|
||
|
<persistence-unit name="envoy"
|
||
|
transaction-type="RESOURCE_LOCAL">
|
||
|
|
||
|
<properties>
|
||
|
<property name="javax.persistence.jdbc.driver"
|
||
|
value="org.postgresql.Driver" /> <!-- DB Driver -->
|
||
|
<property name="javax.persistence.jdbc.url"
|
||
|
value="jdbc:postgresql://localhost/envoy" /> <!-- BD Mane -->
|
||
|
<property name="javax.persistence.jdbc.user" value="envoy" /> <!-- DB User -->
|
||
|
<property name="javax.persistence.jdbc.password"
|
||
|
value="envoy" /> <!-- DB Password -->
|
||
|
|
||
|
<property name="hibernate.dialect"
|
||
|
value="org.hibernate.dialect.PostgreSQL95Dialect" /> <!-- DB Dialect -->
|
||
|
<property name="hibernate.hbm2ddl.auto" value="update" /> <!-- create / create-drop / update -->
|
||
|
|
||
|
</properties>
|
||
|
|
||
|
</persistence-unit>
|
||
|
|
||
|
</persistence>
|