No default cache is configured异常

配置encache的属性,如最大缓存数量、cache刷新的时间等等。

    <ehcache>  
    <diskStore path="c:\\myapp\\cache"/>  
    <defaultCache  
    maxElementsInMemory="1000"  
    eternal="false"  
    timeToIdleSeconds="120"  
    timeToLiveSeconds="120"  
    overflowToDisk="true"  
    />  
    <cache name="DEFAULT_CACHE"  
    maxElementsInMemory="10000"  
    eternal="false"  
    timeToIdleSeconds="300000"  
    timeToLiveSeconds="600000"  
    overflowToDisk="true"  
    />  
    </ehcache>  


这里需要注意的是defaultCache定义了一个默认的cache,这个Cache不能删除,否则会抛出No default cache is configured异常。

你可能感兴趣的:(No default cache is configured异常)