Advertisement
Guest User

Untitled

a guest
Sep 27th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 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. <hibernate-configuration>
  5. <session-factory>
  6.  
  7. <property name="hibernate.dialect">
  8. org.hibernate.dialect.MySQLDialect
  9. </property>
  10.  
  11. <property name="hibernate.connection.driver_class">
  12. com.mysql.jdbc.Driver
  13. </property>
  14.  
  15. <property name="hibernate.current_session_context_class">
  16. thread
  17. </property>
  18.  
  19. <property name="hibernate.connection.url">
  20. jdbc:mysql://localhost/yoda_main
  21. </property>
  22.  
  23. <property name="hibernate.connection.username">
  24. root
  25. </property>
  26.  
  27. <property name="hibernate.connection.password">
  28. </property>
  29. </session-factory>
  30.  
  31. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement