Guest User

Persistence.xml

a guest
Jun 20th, 2016
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.19 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <persistence xmlns="http://xmlns.jcp.org/xml/ns/persistence"
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.     xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence
  5.     http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd"
  6.     version="2.1">
  7.    
  8.     <persistence-unit name="FinanceiroPU" transaction-type="RESOURCE_LOCAL">
  9.         <provider>org.hibernate.ejb.HibernatePersistence</provider>
  10.             <class>com.ufop.financeio.model.Lancamento</class>
  11.             <class>com.ufop.financeio.model.Pessoa</class>
  12.         <properties>
  13.             <property name="hibernate.connection.url" value="jdbc:postgresql://localhost:5432/financeiro" />
  14.             <property name="hibernate.connection.driver_class" value="org.postgresql.Driver" />
  15.             <property name="hibernate.connection.username" value="postgres" />
  16.             <property name="hibernate.connection.password" value="postgre" />
  17.            
  18.             <property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect" />
  19.             <property name="hibernate.show_sql" value="true" />
  20.             <property name="hibernate.format_sql" value="true" />
  21.             <property name="hibernate.hbm2ddl.auto" value="update" />
  22.         </properties>
  23.     </persistence-unit>
  24. </persistence>
Add Comment
Please, Sign In to add comment