无法正常使用ehCache

时间:2013-01-23 03:38:36

标签: java ehcache

我是ehcache的新手。我无法使用ehcahe ..每次我通过hibernate模板查询时,它只打到数据库..没有缓存:(我错过了什么?

我的 ehcache_xml ::

<?xml version="1.0" encoding="UTF-8"?>

    <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd">
    <diskStore path="java.io.tmpdir" />
    <defaultCache maxElementsInMemory="500" eternal="true"
        timeToIdleSeconds="10000" timeToLiveSeconds="60000" overflowToDisk="false" />

    <cache name="com.abc.hibernate.model.ViewOrderSummary"
        maxEntriesLocalHeap="10000" eternal="false" overflowToDisk="true"
        timeToIdleSeconds="300" timeToLiveSeconds="600" diskPersistent="true" />
</ehcache>

以下属性使用哪个?

    <prop key="hibernate.cache.provider_class">${hibernate.cache.provider_class}</prop> 
                    <prop key="hibernate.cache.provider_class">org.hibernate.cache.EhCacheProvider</prop>

1 个答案:

答案 0 :(得分:0)

试试这个

<property name="cache.provider_class">org.hibernate.cache.EhCacheProvider</property>