Advertisement
Guest User

Untitled

a guest
Jun 15th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 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.  
  8. <property name="connection.driver_class">com.mysql.jdbc.Driver </property>
  9. <property name="connection.url">jdbc:mysql://localhost:3306</property>
  10. <property name="connection.username">root</property>
  11. <property name="connection.password">root</property>
  12. <property name="connection.pool_size">1</property>
  13. <property name="dialect">org.hibernate.dialect.MySQLDialect</property>
  14. <property name="hibernate.transaction.coordinator_class">jdbc</property>
  15. <property name="current_session_context_class">thread</property>
  16. <property name="hibernate.show_sql">true</property>
  17.  
  18. <mapping class="hello.User"></mapping>
  19.  
  20.  
  21.  
  22.  
  23.  
  24. </session-factory>
  25. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement