-1

如何使在 ehcache.xml 中声明的另一个缓存作为默认元素而不是<defaultCache/>元素。

<ehcache>
  <!-- <defaultCache xxxxxx /> -->
   <cache name="mynewDefault" />
</ehcache>

现在我想将 mynewDefault 设为默认缓存。请注意 defaultCache 已注释。

4

1 回答 1

0

每当您向 CacheManager 添加缓存时,都会使用 defaultCache-Properties,该缓存未放置在配置中。在您的情况下,这些设置仅适用于名为“mynewDefault”的缓存。只需更改的属性,一切都应该按照您想要的方式工作。

于 2013-08-23T12:25:11.440 回答