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