Advertisement
Guest User

Untitled

a guest
Dec 19th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 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="UnidadPersistenciaCurso">
  8. <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
  9. <properties>
  10. <property name="hibernate.connection.url" value="jdbc:mysql://tgconsulting.online:3306/cintegracion?serverTimezone=UTC"/>
  11. <property name="hibernate.connection.driver_class" value="com.mysql.cj.jdbc.Driver"/>
  12. <property name="hibernate.connection.username" value="cintegracion"/>
  13. <property name="hibernate.connection.password" value="cintegracion"/>
  14. <property name="hibernate.dialect" value=" org.hibernate.dialect.MySQLDialect"/>
  15. <property name="hibernate.show_sql" value="true" />
  16. <property name="hibernate.format_sql" value="true" />
  17. </properties>
  18. </persistence-unit>
  19.  
  20. </persistence>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement