アプリケーションでhibernateで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としてアプリケーションパスに変更します。