Guest User

Untitled

a guest
Jun 20th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <hibernate-configuration>
  2.  
  3. <session-factory name="info">
  4.  
  5. <!-- Database connection settings -->
  6. <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
  7. <property name="connection.url">jdbc:mysql://unit-109/sh</property>
  8. <property name="connection.username">sh</property>
  9. <property name="connection.password">sh</property>
  10.  
  11. <!-- SQL dialect -->
  12. <property name="dialect">org.hibernate.dialect.MySQLDialect</property>
  13.  
  14. <!-- Bean mapping config -->
  15. <mapping resource="my/user.hbm.xml"/>
  16. </session-factory>
  17.  
  18. </hibernate-configuration>
Add Comment
Please, Sign In to add comment