Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3. "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  4. "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  5.  
  6. <hibernate-configuration>
  7. <session-factory>
  8. <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  9. <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/test</property>
  10. <property name="hibernate.connection.username">root</property>
  11. <property name="hibernate.connection.password">root</property>
  12. <property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>
  13. <property name="show_sql">true</property>
  14. <property name="hbm2ddl.auto">update</property>
  15. <property name="hibernate.connection.autocommit">false</property>
  16. <property name="current_session_context_class">thread</property>
  17. <property name="hibernate.enable_lazy_load_no_trans">true</property>
  18.  
  19. <mapping class="controller.User" />
  20.  
  21. </session-factory>
  22. </hibernate-configuration>
  23.  
  24. <groupId>org.hibernate</groupId>
  25. <artifactId>hibernate-core</artifactId>
  26. <version>4.2.7.SP1</version>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement