2015-05-29 86 views
1

我從git導入了存儲庫並執行了maven構建。當我使用「clean install -U -Denvironment.type = dev -P autoInstallPackage -P analysis -P analysisCI」目標運行我的項目時,它會引發以下錯誤。有人可以幫我解決這個問題嗎?Java運行時環境檢測到致命錯誤:

# A fatal error has been detected by the Java Runtime Environment: 

# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000052811d2e, pid=6564, tid=7972 

# JRE version: Java(TM) SE Runtime Environment (7.0_79-b15) (build 1.7.0_79-b15) 
# Java VM: Java HotSpot(TM) 64-Bit Server VM (24.79-b02 mixed mode windows-amd64 compressed oops) 
# Problematic frame: 
# V [jvm.dll+0x3f1d2e] 

# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows 

# An error report file with more information is saved as: 
# C:\Users\amummadi\git\kpmg-advisory\hs_err_pid6564.log 

# If you would like to submit a bug report, please visit: 
# http://bugreport.java.com/bugreport/crash.jsp 

在此先感謝!

回答

0

這意味着您的Java安裝文件可能與您的安裝程序使用的存儲庫文件或安裝文件有關。

典型的解決方案

嘗試重新安裝JRE您的計算機上。這是最容易做:

  1. 單擊開始按鈕。

  2. 選擇控制面板。

  3. 單擊程序|卸載程序。

  4. 在在右上角的搜索框中,鍵入「Java」的

  5. 右擊「Java運行時環境」,從搜索結果中,選擇卸載選項。

或者

這可能是與您的安裝相關的安裝包中的錯誤,可能意味着您需要重建您的安裝,雖然我只需要一次性處理,這種情況下之前我們公司生產的安裝包。

+0

我仍然得到以下錯誤[INFO] HttpMethodDirector - I/O異常(java.net.ConnectException)處理請求:連接被拒絕:連接 [INFO] HttpMethodDirector - 重試請求 [INFO] HttpMethodDirector - I/O異常(java.net.ConnectException)處理請求時抓:連接被拒絕:連接 [INFO] HttpMethodDirector - 重試請求 [INFO] HttpMethodDirector - 在處理請求時捕獲I/O異常(java.net.ConnectException):拒絕連接:連接 [INFO] HttpMethodDirector - 重試請求 –

+0

將此添加到您的問題。把**編輯:**然後張貼在下面。 – Adam

+0

這是某種代理錯誤。這裏看看這個堆棧問題:http://stackoverflow.com/questions/9811828/common-httpclient-and-proxy。 但是,這已經超出了我的知識領域,因此我必須原諒自己給出不正確的答案,並等待有更多知識的人來回答您的問題。 – Adam

0

我偶爾會遇到這種情況。從來沒有弄清楚爲什麼。但我發現我可以通過徹底清理我的Maven回購緩存來解決問題。 (然後,當然,在我的下一個版本中遭受maven着名的「下載世界」體驗)。

+0

[INFO] HttpMethodDirector - I/O異常(java.net。ConnectException:連接被拒絕:連接 [INFO] HttpMethodDirector - 重試請求 [INFO] HttpMethodDirector - 處理請求時捕獲的I/O異常(java.net.ConnectException):連接被拒絕:連接 [INFO] HttpMethodDirector - 重試請求 [INFO] HttpMethodDirector - 處理請求時捕獲的I/O異常(java.net.ConnectException):連接被拒絕:連接 [INFO] HttpMethodDirector - 重試請求 –

+0

我仍然收到以上錯誤 –

相關問題