gpt4 book ai didi

java - 防止 ehcache 在启动时尝试访问互联网

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:46:26 25 4
gpt4 key购买 nike

我有一个相当简单的非集群应用程序,使用 spring 和 hibernate 运行 ehcache。

启动时出现此错误:

<06-Sep-2010 19:14:05 o'clock BST> <Error> <Net>  <Failed to communicate with proxy:   10.x.x.x/8080. Will try connection www.terracotta.org/80 now.

java.net.SocketTimeoutException: 连接超时

如何阻止此调用?

这是我的 ehcache.xml:

<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="ehcache.xsd"
updateCheck="false" monitoring="off" dynamicConfig="false">


<defaultCache maxElementsInMemory="1000" eternal="false"
timeToIdleSeconds="60" timeToLiveSeconds="60"
overflowToDisk="false" >
<terracotta clustered="false"/>
</defaultCache>

我确信这个 ehcache.xml 正在被拾取和使用,例如没有类路径问题。

我正在使用:ehcache 2.0.1 和 hibernate 3.3.1.GA

最佳答案

添加updateCheck="false"时给你的<ehcache />元素不起作用,请尝试使用 -Dnet.sf.ehcache.skipUpdateCheck=true 设置系统属性在命令行或 System.setProperty("net.sf.ehcache.skipUpdateCheck", "true")以编程方式。

关于java - 防止 ehcache 在启动时尝试访问互联网,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3653544/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com