我的单元测试遇到了问题。我目前使用ehcache和Spring 3.2(@Cacheable)一切正常但我想在单元测试期间禁用缓存。
所以在src / test / resources / ehcache.xml中写道:
<cache name="myCache"
maxElementsInMemory="1"
eternal="false"
timeToIdleSeconds="0"
timeToLiveSeconds="0"
overflowToDisk="true"
maxElementsOnDisk="0"
diskPersistent="false"
diskExpiryThreadIntervalSeconds="0"
memoryStoreEvictionPolicy="LRU"/>
但缓存仍在运行!有人有想法吗?
提前感谢您的帮助!