入门客AI创业平台(我带你入门,你带我飞行)
博文笔记

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

创建时间:2009-07-10 投稿人: 浏览次数:4571

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

声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。