Skip to content

Instantly share code, notes, and snippets.

@KiryhaPikoff
Created July 16, 2019 19:34
Show Gist options
  • Save KiryhaPikoff/f6a4053f07ff1711ae3641178c5511cb to your computer and use it in GitHub Desktop.
Save KiryhaPikoff/f6a4053f07ff1711ae3641178c5511cb to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8" ?>
<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" xmlns="http://java.sun.com/xml/ns/persistence">
<persistence-unit name="first_main">
<class>projects.mvc.first.entitys.Person</class>
<properties>
<property name="hibernate.archive.autodetection" value="class" />
<property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQL93Dialect" />
<property name="hibernate.connection.driver_class" value="org.postgresql.Driver" />
<property name="hibernate.connection.url" value="jdbc:postgresql://localhost:5432/hosp" />
<property name="hibernate.default_schema" value="myschema" />
<property name="hibernate.connection.username" value="postgres" />
<property name="hibernate.connection.password" value="Pikoff" />
<property name="hibernate.temp.use_jdbc_metadata_defaults" value="false"/>
<property name="hibernate.show_sql" value="true"/>
<property name="hibernate.flushMode" value="FLUSH_AUTO" />
<property name="hibernate.hbm2ddl.auto" value="update" />
</properties>
</persistence-unit>
</persistence>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment