Advertisement
Guest User

Untitled

a guest
May 6th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3. "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  4. "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  5. <hibernate-configuration>
  6. <session-factory>
  7. <!-- Database connection settings -->
  8. <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
  9. <property name="connection.url">jdbc:mysql://localhost:3306/AICI_ESTE_CEVA?useSSL=false&amp;serverTimezone=UTC </property>
  10. <property name="connection.username">USERNAME</property>
  11. <property name="connection.password">PASSWORD</property>
  12. <!-- Select our SQL dialect -->
  13. <property name="dialect">org.hibernate.dialect.MySQLDialect</property>
  14. <property name="show_sql">true</property>
  15.  
  16. <property name="hbm2ddl.auto">update</property>
  17.  
  18. <mapping class="net.codejava.hibernate.models.User" />
  19. <mapping class="net.codejava.hibernate.models.Person" />
  20. <mapping class="net.codejava.hibernate.models.Notification" />
  21. <mapping class="net.codejava.hibernate.models.Account" />
  22. <mapping class="net.codejava.hibernate.models.Transaction" />
  23.  
  24. </session-factory>
  25. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement