Guest User

Untitled

a guest
Sep 21st, 2017
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 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.  
  8. <session-factory>
  9.  
  10. <property name="hibernate.bytecode.use_reflection_optimizer">false</property>
  11. <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  12. <property name="hibernate.connection.password"></property>
  13. <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/test</property>
  14. <property name="hibernate.connection.username">root</property>
  15. <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
  16. <property name="hibernate.current_session_context_class">org.hibernate.context.internal.ThreadLocalSessionContext</property>
  17. <property name="hibernate.show_sql">true</property>
  18. <property name="hibernate.format_sql">true</property>
  19. <property name="hibernate.enable_lazy_load_no_trans">true</property>
  20. <mapping class="hello.models.Animal" />
  21.  
  22. </session-factory>
  23.  
  24. </hibernate-configuration>
Add Comment
Please, Sign In to add comment