Advertisement
Guest User

dataconfig

a guest
Nov 22nd, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <!DOCTYPE hibernate-configuration PUBLIC
  2. "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  3. "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  4.  
  5. <hibernate-configuration>
  6. <session-factory>
  7. <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  8. <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/hiber_study?useSSL=false&amp;amp;serverTimezone=UTC</property>
  9. <property name="hibernate.connection.username">root</property>
  10. <property name="hibernate.connection.password">admin</property>
  11.  
  12. <property name="hibernate.connection.pool_size">1</property>
  13.  
  14. <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
  15.  
  16. <property name="show_sql">true</property>
  17.  
  18. <property name="current_session_context_class">thread</property>
  19. </session-factory>
  20. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement