#
# A fatal error has been detected by the Java Runtime Environment:
#
# Internal Error (c1_Optimizer.cpp:271), pid=4560, tid=5860
# guarantee(x_compare_res != Constant::not_comparable) failed: incomparable constants in IfOp
#
# JRE version: 6.0_33-b05
# Java VM: Java HotSpot(TM) Client VM (20.8-b03 mixed mode windows-x86 )
# An error report file with more information is saved as:
# D:\Program Files\tomcat6\bin\hs_err_pid4560.log
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
#
打开D:\Program Files\tomcat6\bin\hs_err_pid4560.log
有如下2行:
Current CompileTask:
C1: 5209 1448 org.hibernate.cfg.annotations.SimpleValueBinder.setType(Lorg/hibernate/reflection/XProperty;Lorg/hibernate/reflection/XClass;)V (933 bytes)后来通过上网查找,得到如下解决方案,顺利解决:
给jdk添加启动参数:
-XX:CompileCommand=exclude,org/hibernate/cfg/annotations/SimpleValueBinder.setType
本文记录了一次遇到 Java 运行时环境内部错误的经历,该错误发生在使用 Hibernate 的过程中。详细介绍了错误日志信息及如何通过添加特定的 JDK 启动参数来解决问题。

被折叠的 条评论
为什么被折叠?



