hibernate.cfg.xml 配置文件 禁用二级缓存

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

<!DOCTYPE hibernate-configuration PUBLIC
          "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
          "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<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>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值