【发布时间】:2011-11-17 19:25:05
【问题描述】:
基于以下配置,我无法在 xml 文件上启用 ehcache 统计信息。没有这样的属性来启用 ehcache 统计。
<bean id="cache" class="org.springframework.cache.ehcache.EhCacheFactoryBean">
<property name="cacheName" value="diskCache"/>
<property name="cacheManager" ref="cacheManager"/>
<property name="maxElementsInMemory" value="1"/>
<property name="overflowToDisk" value="true"/>
<property name="maxElementsOnDisk" value="10"/>
</bean>
Ehcache 2.4.6 带有禁用的缓存统计信息。
有没有其他人有实现此功能的经验?
对此的任何帮助或想法将不胜感激!
【问题讨论】: