2016-07-15 41 views
3

這很奇怪,應用程序在某段時間後停止工作並引發錯誤。以下是相同的細節。Grails應用程序在發生異常後終止

任何幫助將是值得

OS:ubuntu0.14.04.1

Java版本:打開JDK 7

Grails的版本:2.4.5

應用類型:其他應用

錯誤/異常

MISSING EXCEPTION HANDLER for pc 0x00007fa0613a429c and handler bci -1 
    Exception: 
java.lang.StackOverflowError 
- klass: 'java/lang/StackOverflowError' 
Compiled exception table : 
ExceptionHandlerTable (size = 288 bytes) 
catch_pco = 344 (1 entries) 
    bci -1 at scope depth 0 -> pco 1329 
catch_pco = 516 (1 entries) 
    bci -1 at scope depth 0 -> pco 1523 
catch_pco = 532 (1 entries) 
    bci -1 at scope depth 0 -> pco 1528 
catch_pco = 868 (1 entries) 
    bci -1 at scope depth 0 -> pco 1533 
catch_pco = 920 (1 entries) 
    bci -1 at scope depth 0 -> pco 1535 
catch_pco = 944 (1 entries) 
    bci -1 at scope depth 0 -> pco 1537 
catch_pco = 1160 (1 entries) 
    bci -1 at scope depth 0 -> pco 1465 
catch_pco = 1188 (1 entries) 
    bci -1 at scope depth 0 -> pco 1518 
catch_pco = 1220 (1 entries) 
    bci -1 at scope depth 0 -> pco 1513 
catch_pco = 1340 (2 entries) 
    bci 100 at scope depth 0 -> pco 1490 
    bci 110 at scope depth 0 -> pco 1476 
catch_pco = 1476 (2 entries) 
    bci 100 at scope depth 0 -> pco 1550 
    bci 110 at scope depth 0 -> pco 1476 
Could not load hsdis-amd64.so; library not loadable; PrintAssembly is disabled 
# 
# A fatal error has been detected by the Java Runtime Environment: 
# 
# Internal Error (sharedRuntime.cpp:714), pid=19233, tid=140325521483520 
# guarantee(false) failed: missing exception handler 
# 
# JRE version: OpenJDK Runtime Environment (7.0_101) (build 1.7.0_101-b00) 
# Java VM: OpenJDK 64-Bit Server VM (24.95-b01 mixed mode linux-amd64 compressed oops) 
# Derivative: IcedTea 2.6.6 
# Distribution: Ubuntu 14.04 LTS, package 7u101-2.6.6-0ubuntu0.14.04.1 
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again 
# 
# An error report file with more information is saved as: 
# /home/vinay/Documents/projects/westcon/nimbus4/nimbus4-api/hs_err_pid19233.log 
# 
# If you would like to submit a bug report, please include 
# instructions on how to reproduce the bug and visit: 
# http://icedtea.classpath.org/bugzilla 
# 
+0

這似乎是JDK本身的錯誤。 –

+0

你修好了嗎?我得到同樣的錯誤,並使用Ubuntu 16.04。 – fsi

+0

@fsi還沒有!它對我仍然存在。 –

回答

0

我有同樣的問題。它在我嘗試運行任何grails命令時浮出水面。

運行:grails 2.0.3,macOS 10.13.2。

打開我們的修復方案是使用JDK 1.7。

我已將JDK 1.8設置爲JAVA_HOME用於其他項目,並忘記將其重新切換回1.7。

希望這有助於

相關問題