Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
  5. http://java.sun.com/xml/ns/persistence/persistence_2_1.xsd">
  6.  
  7. <persistence-unit name="UnidadPersistencia">
  8. <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
  9. <properties>
  10. <property name="hibernate.connection.url" value="jdbc:postgresql://192.168.254.232:5432/curso_spring"/>
  11. <property name="hibernate.connection.driver_class" value="org.postgresql.Driver"/>
  12. <property name="hibernate.connection.username" value="ihsa"/>
  13. <property name="hibernate.connection.password" value="ihsa"/>
  14. <property name="hibernate.dialect"
  15. value="org.hibernate.dialect.PostgreSQLDialect"/>
  16. <property name="hibernate.show_sql" value="true"/>
  17. <property name="hibernate.format_sql" value="true"/>
  18. </properties>
  19. </persistence-unit>
  20. </persistence>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement