Advertisement
Guest User

Untitled

a guest
Mar 9th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <persistence version="2.1"
  3. xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
  5. <persistence-unit name="crud">
  6. <class>br.com.barros.model.Paciente</class>
  7. <properties>
  8. <property name="hibernate.hbm2ddl.auto" value="update" />
  9. <property name="hibernate.show_sql" value="true" />
  10. <property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect" />
  11. <property name="hibernate.format_sql" value="true" />
  12. <property name="hibernate.connection.driver_class" value="org.postgresql.Driver" />
  13. <property name="hibernate.connection.username" value="postgres" />
  14. <property name="hibernate.connection.password" value="123" />
  15. <property name="hibernate.connection.url" value="jdbc:postgresql://127.0.0.1:5432/crud" />
  16.  
  17. <!-- <property name="hibernate.connection.autoReconnect" value="true" /> -->
  18. <!-- <property name="hibernate.connection.autoReconnectForPools" value="true" /> -->
  19. <!-- <property name="hibernate.c3p0.min_size" value="5" /> -->
  20. <!-- <property name="hibernate.c3p0.max_size" value="60" /> -->
  21. <!-- <property name="hibernate.c3p0.acquire_increment" value="5" /> -->
  22. <!-- <property name="hibernate.c3p0.timeout" value="21600" /> -->
  23. <!-- <property name="hibernate.c3p0.idle_test_period" value="120" /> -->
  24. </properties>
  25. </persistence-unit>
  26. </persistence>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement