是否可以使用 Play 框架从 application.conf 设置 Ehcache 属性?
即在 application.conf 中我可以指定如下内容:
timeToLiveSeconds=36000
是否可以使用 Play 框架从 application.conf 设置 Ehcache 属性?
即在 application.conf 中我可以指定如下内容:
timeToLiveSeconds=36000
https://gist.github.com/oscarrenalias/5063249的要点建议将 ehcache.xml 放在 conf/ 文件夹中,但我不知道这是否适用于 Play 1。
据我所知,这是不支持的。此处记录了 Play 1.2.4 支持的配置选项,列表中没有类似的内容。也无法从 Play 的 Cache API 中找到 Ehcache 特定选项,因为它应该为缓存功能提供通用接口,独立于实际实现(Ehcache、Memcached)。