Advertisement
kvitso

hibernate.cfg.xml

Oct 27th, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.29 KB | None | 0 0
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3.    "-//Hibernate/Hibernate Configuration DTD//EN"
  4.    "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  5.  
  6. <hibernate-configuration>
  7.     <session-factory>
  8.         <property name="hibernate.dialect">org.hibernate.dialect.MySQLInnoDBDialect</property>
  9.         <property name="hibernate.connection.datasource">java:/comp/env/jdbc/db</property>
  10.         <property name="hibernate.current_session_context_class">org.hibernate.context.internal.ThreadLocalSessionContext</property>
  11.         <property name="hibernate.cache.use_query_cache">true</property>
  12.         <property name="hibernate.cache.use_second_level_cache">true</property>
  13.         <property name="hibernate.cache.region.factory_class">org.hibernate.cache.ehcache.EhCacheRegionFactory</property>
  14.         <property name="net.sf.ehcache.configurationResourceName">ehcache.xml</property>
  15.         <property name="hibernate.default_batch_fetch_size">1000</property>
  16.         <property name="hibernate.jdbc.batch_size">20</property>
  17.         <property name="hibernate.generate_statistics">false</property>
  18.         <property name="hibernate.show_sql">true</property>
  19.         <property name="hibernate.format_sql">false</property>
  20.         <property name="hibernate.use_sql_comments">true</property>
  21.  
  22.     </session-factory>
  23. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement