Advertisement
Guest User

Untitled

a guest
Aug 17th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 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://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
  5.  
  6. <hibernate-configuration>
  7. <session-factory>
  8. <!-- Database connection settings -->
  9. <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
  10. <property name="connection.url">jdbc:mysql://localhost:3306/todoproject</property>
  11. <property name="connection.username">root</property>
  12. <property name="connection.password">123456</property>
  13.  
  14. <!-- JDBC connection pool (use the built-in) -->
  15. <property name="connection.pool_size">1</property>
  16.  
  17. <!-- SQL dialect -->
  18. <property name="dialect">org.hibernate.dialect.MySQLDialect</property>
  19.  
  20. <!-- Disable the second-level cache -->
  21. <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
  22.  
  23. <!-- Echo all executed SQL to stdout -->
  24. <property name="show_sql">true</property>
  25.  
  26. <!-- Specify session context -->
  27. <property name="hibernate.current_session_context_class">org.hibernate.context.internal.ThreadLocalSessionContext</property>
  28.  
  29. <!-- Mention here all the model classes along with their package name -->
  30. <mapping class="com.cry.Entities.Users"/>
  31.  
  32. </session-factory>
  33. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement