如何禁用Ehcache更新检查程序?

时间:2010-03-09 06:58:47

标签: ehcache

12:18:55,541 INFO [UpdateChecker]发现新的更新:2.0.0 [http://ehcache.org/news.html]

如何禁止ehcache检查新更新,这是在加载我的j2ee应用程序时以及ehcache初始化时发生的。

2 个答案:

答案 0 :(得分:34)

一种方法是在类路径上放置ehcache.xml

根标签中的属性updateCheck=”false”令人难以忘怀。

您可以在此处找到有关它的更多信息:http://www.svenlange.co.za/2010/02/disable-ehcaches-updatechecker-in-grails-application

另一种方法是执行以下操作:

System.setProperty("net.sf.ehcache.skipUpdateCheck", "true");

答案 1 :(得分:18)

简单地说,在您的ehcache.xml配置文件中,确保禁用updateCheck:

<ehcache updateCheck="false">

<defaultCache
        maxElementsInMemory="0"
        eternal="false"
        timeToIdleSeconds="0"
        timeToLiveSeconds="0"
        overflowToDisk="false"
        diskPersistent="false"
        />
</ehcache>