1. 程式人生 > >hibernate.cfg.xml 配置檔案 禁用二級快取

hibernate.cfg.xml 配置檔案 禁用二級快取

<?xml version='1.0' encoding='utf-8'?>

<hibernate-configuration>
<session-factory>

 <!-- jdbc connection properties -->
    <property name="hibernate.dialect">org.hibernate.dialect.MySQLInnoDBDialect</property>
    <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
    <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/core_jbpm?characterEncoding=gb2312</property>
    <property name="hibernate.connection.username">root</property>
    <property name="hibernate.connection.password">root</property>

 <property name="connection.autocommit">true</property>
 <property name="connection.pool.size">30</property>
 <property name="show_sql">true</property>      <!-- 設定二級快取外掛EHCache的Provider類--> 
    <property name="hibernate.cache.provider_class"> 
         org.hibernate.cache.EhCacheProvider  
    </property> 
      <!-- 啟動"查詢快取"  這裡禁用二級快取 --> 
    <property name="hibernate.cache.use_query_cache"> 
         false  
    </property> 

 <property name="hibernate.show_sql">true</property>
 <!-- ############################################ -->
 <!-- # mapping files with external dependencies # -->
 <!-- ############################################ -->

 <!-- following mapping file has a dependendy on   -->
 <!-- 'bsh-{version}.jar'.                         -->
 <!-- uncomment this if you don't have bsh on your -->
 <!-- classpath.  you won't be able to use the     -->
 <!-- script element in process definition files   -->
 <mapping resource="org/jbpm/graph/action/Script.hbm.xml" />

 <!-- following mapping files have a dependendy on  -->
 <!-- 'jbpm-identity-{version}.jar', mapping files  -->
 <!-- of the pluggable jbpm identity component.     -->
 <!-- comment out the following 3 lines if you don't-->
 <!-- want to use the default jBPM identity mgmgt   -->
 <!-- component                                     -->
 <mapping resource="org/jbpm/identity/User.hbm.xml" />
 <mapping resource="org/jbpm/identity/Group.hbm.xml" />
 <mapping resource="org/jbpm/identity/Membership.hbm.xml" />

 <!-- ###################### -->
 <!-- # jbpm mapping files # -->
 <!-- ###################### -->

 <!-- hql queries and type defs -->
 <mapping resource="org/jbpm/db/hibernate.queries.hbm.xml" />


</session-factory>
</hibernate-configuration>