Guest User

Untitled

a guest
Sep 26th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <session-factory name="factory">
  2.  
  3. <property name="connection.driver_class">
  4. com.mysql.jdbc.Driver
  5.  
  6. </property>
  7.  
  8. <property name="connection.url">jdbc:mysql://localhost:3306/sample</property>
  9.  
  10. <property name="connection.username">
  11. root
  12. </property>
  13. <property name="connection.password">
  14. root
  15. </property>
  16. <property name="connection.pool_size">5</property>
  17. <!-- SQL dialect -->
  18. <property name="dialect">
  19. org.hibernate.dialect.MySQLDialect
  20. </property>
  21. <!-- Echo all executed SQL to stdout -->
  22.  
  23. <property name="hbm2ddl.auto">update</property>
  24. <mapping class="user" />
  25.  
  26. </session-factory>
Add Comment
Please, Sign In to add comment