您的位置:首页 > 其它

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

2013-03-28 13:45 363 查看
<?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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: