Advertisement
Guest User

Untitled

a guest
Jul 7th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE hibernate-configuration SYSTEM
  3. "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  4.  
  5. <hibernate-configuration>
  6. <session-factory>
  7. <property name="hibernate.dialect">
  8. org.hibernate.dialect.MySQL5Dialect
  9. </property>
  10. <property name="hibernate.connection.driver_class">
  11. com.mysql.jdbc.Driver
  12. </property>
  13.  
  14. <!-- Assume test is the database name -->
  15. <property name="hibernate.connection.url">
  16. jdbc:mysql://localhost/hexample
  17. </property>
  18. <property name="hibernate.connection.username">
  19. root
  20. </property>
  21. <property name="hibernate.connection.password">
  22. root
  23. </property>
  24. <property name="hbm2ddl.auto">update</property>
  25. </session-factory>
  26. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement