Advertisement
N_Damyanov

persistence.xml

Jun 24th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <persistence xmlns="http://java.sun.com/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_0.xsd"
  6. version="2.0">
  7.  
  8. <persistence-unit name = "soft_uni">
  9.  
  10. <properties>
  11. <property name = "hibernate.connection.url" value="jdbc:mysql://localhost:3306/soft_uni?createDatabaseIfNotExist=true&amp;useSSL=false" />
  12. <property name = "hibernate.connection.driver_class" value="com.mysql.jdbc.Driver" />
  13. <property name = "hibernate.hbm2ddl.auto" value="update"/>
  14. <property name = "hibernate.connection.username" value="root"/>
  15. <property name = "hibernate.connection.password" value="1234"/>
  16. <property name = "hibernate.dialect" value="org.hibernate.dialect.MySQL5Dialect"/>
  17.  
  18. </properties>
  19. </persistence-unit>
  20. </persistence>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement