我在我的应用程序中使用带有休眠功能的 ehcache。这是ehcache.xml的配置
<ehcache>
<diskStore path="java.io.tmpdir"/>
<defaultCache
maxElementsInMemory="10"
eternal="false"
timeToIdleSeconds="120"
timeToLiveSeconds="120"
overflowToDisk="true"
diskSpoolBufferSizeMB="300"
maxElementsOnDisk="10000000"
diskPersistent="false"
diskExpiryThreadIntervalSeconds="120"
memoryStoreEvictionPolicy="LRU"
/>
</ehcache>
我的 diskStore 路径是 java.io.tmpdir,我想将其更改为我的应用程序路径${WebApp}/DiskStore