Last active
July 8, 2021 22:35
-
-
Save alefhsousa/68a09f5ed81f8ce4dc45d65521c36a3f to your computer and use it in GitHub Desktop.
Sample persistence.xml for Hibernate 5.0.1with postgresql 9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<persistence xmlns="http://java.sun.com/xml/ns/persistence" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence | |
http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd" | |
version="2.0"> | |
<persistence-unit name="jpa"> | |
<provider>org.hibernate.jpa.HibernatePersistenceProvider</provider> | |
<class>Model.Person</class> | |
<properties> | |
<property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQL9Dialect" /> | |
<property name="hibernate.connection.driver_class" value="org.postgresql.Driver" /> | |
<property name="hibernate.connection.url" value="jdbc:postgresql://localhost:5432/vcbs-db" /> | |
<property name="hibernate.connection.username" value="username" /> | |
<property name="hibernate.connection.password" value="password" /> | |
<property name="hibernate.show_sql" value="true"/> | |
<property name="hibernate.format_sql" value="true"/> | |
<property name="hibernate.flushMode" value="FLUSH_AUTO" /> | |
<property name="hibernate.hbm2ddl.auto" value="create-drop" /> | |
</properties> | |
</persistence-unit> | |
</persistence> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment