Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使在 ehcache.xml 中声明的另一个缓存作为默认元素而不是<defaultCache/>元素。
<defaultCache/>
<ehcache> <!-- <defaultCache xxxxxx /> --> <cache name="mynewDefault" /> </ehcache>
现在我想将 mynewDefault 设为默认缓存。请注意 defaultCache 已注释。
每当您向 CacheManager 添加缓存时,都会使用 defaultCache-Properties,该缓存未放置在配置中。在您的情况下,这些设置仅适用于名为“mynewDefault”的缓存。只需更改的属性,一切都应该按照您想要的方式工作。