如何在生产Grails中的WEB-INF目录中存储缓存数据?

时间:2016-07-12 06:57:23

标签: war ehcache grails-3.1

我正在使用缓存和ehcache插件。我已将ehcahe.xml配置为以下

<ehcache name="backEndData">
<diskStore path="user.dir/src/main/webapp/cache"/>

  <defaultCache
      maxElementsInMemory="0"
      maxElementsOnDisk="10000"
      eternal="false"
      overflowToDisk="true">
  </defaultCache>
</ehcache>

它正在开发环境中完美地工作但是如何在部署war文件之后使其工作。

0 个答案:

没有答案