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.31 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <persistence xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://xmlns.jcp.org/xml/ns/persistence"
  4. xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd"
  5. version="2.1">
  6. <persistence-unit name="Sboj" transaction-type="RESOURCE_LOCAL">
  7. <properties>
  8. <property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/sboj_db?useSSL=false&amp;createDatabaseIfNotExist=true&amp;serverTimezone=UTC
  9. &amp;autoReconnect=true&amp;failOverReadOnly=false&amp;maxReconnects=10&amp;allowPublicKeyRetrieval=true" />
  10. <property name="javax.persistence.jdbc.user" value="root" />
  11. <property name="javax.persistence.jdbc.password" value="1234" />
  12. <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver" />
  13.  
  14. <property name = "hibernate.hbm2ddl.auto" value="update"/>
  15. <property name = "hibernate.show_sql" value = "true" />
  16. <property name = "hibernate.format_sql" value = "true" />
  17. <property name = "hibernate.dialect" value="org.hibernate.dialect.MariaDBDialect" />
  18. </properties>
  19. </persistence-unit>
  20. </persistence>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement