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 がコメントされていることに注意してください。
defaultCache-Properties は、構成に配置されていないキャッシュを CacheManager に追加するたびに使用されます。あなたの場合、設定は「mynewDefault」という名前のキャッシュに適用されます。のプロパティを変更するだけで、すべてが思いどおりに機能するはずです。