Advertisement
Guest User

Untitled

a guest
Nov 15th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <!DOCTYPE hibernate-configuration PUBLIC
  2. "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  3. "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
  4.  
  5. <hibernate-configuration>
  6. <session-factory>
  7. <property name="hibernate.connection.username">
  8. root
  9. </property>
  10. <property name="hibernate.connection.password">
  11. </property>
  12. <property name="hibernate.connection.url">
  13. jdbc:mysql://localhost/fj28
  14. </property>
  15. <property name="hibernate.connection.driver_class">
  16. com.mysql.jdbc.Driver
  17. </property>
  18. <property name="hibernate.dialect">
  19. org.hibernate.dialect.MySQL5InnoDBDialect
  20. </property>
  21.  
  22. <property name="hibernate.hbm2ddl.auto">update</property>
  23.  
  24. <property name="show_sql">true</property>
  25. <property name="format_sql">true</property>
  26. </session-factory>
  27. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement