2016-07-15 45 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。

希望这有助于

相关问题