1. 程式人生 > 實用技巧 >Mybatis中出現net.sf.ehcache.util.UpdateChecker.checkForUpdate問題解決方案

Mybatis中出現net.sf.ehcache.util.UpdateChecker.checkForUpdate問題解決方案

問題描述
最近每次啟動專案都會拋如下異常:

2018-03-29 09:01:07,831 DEBUG [ehcache] net.sf.ehcache.util.UpdateChecker.checkForUpdate(UpdateChecker.java:107) - Update check failed: 
java.io.IOException: Server returned HTTP response code: 403 for URL: http://www.terracotta.org/kit/reflector?pageID=update.properties&patch=UNKNOWN&tc-product
=ehcache-core+2.9.0&tc-version=2.9.0&uptime-secs=1&kitID=ehcache.default&jvm-version=1.8.0_151&os-name=Mac+OS+X&id=-1062731415&source=ehcache-core&jvm-name=Java+HotSpot%28TM%29+64-Bit+Server+VM&platform=x86_64 at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1894) ~[?:1.8.0_151] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1492) ~[?:1.8.0_151] at net.sf.ehcache.util.UpdateChecker.getUpdateProperties(UpdateChecker.java:153) ~[ehcache-2.9.0.jar:2.9.0] at net.sf.ehcache.util.UpdateChecker.doCheck(UpdateChecker.java:117) ~[ehcache-2.9.0.jar:2.9.0] at net.sf.ehcache.util.UpdateChecker.checkForUpdate(UpdateChecker.java:104) [ehcache-2.9.0.jar:2.9.0] at net.sf.ehcache.util.UpdateChecker.run(UpdateChecker.java:95) [ehcache-2.9.0.jar:2.9.0] at java.util.TimerThread.mainLoop(Timer.java:555) [?:1.8.0_151] at java.util.TimerThread.run(Timer.java:505) [?:1.8.0_151] 1 2 3 4 5 6 7 8 9 10 經研究發現,原來是ehcache搗的鬼,每次啟動都會訪問官方網站檢視是否有最新版本,這樣也可以統計有多少使用者和伺服器在使用ehcache。很可能是一個後門程式,預設開啟。 解決方案 找到ehcache.xml檔案,ehcache標籤中新增屬性updateCheck=”false”,如下:
<ehcache name="ehcache" updateCheck="false"> 1 或如下方式修改: <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ehcache.xsd" updateCheck="false"> 1 2 再次重啟,問題即可解決。