当前版本的java(8u20,7u67)打破了gradle \ groovy编译器和运行时兼容性:
:compileTestGroovy FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':compileTestGroovy'.
> Bad <init> method call from inside of a branch
Exception Details:
Location:
some/MyClass.<init>(Lsome/MyOtherClass;)V @71: invokespecial
Reason:
Error exists in the bytecode
Bytecode:
0x0000000: b800 174d 04bd 0019 5903 2b53 5910 ff12
0x0000010: 05b8 001f 2a5f ab00 0000 0055 0000 0003
0x0000020: f20b c677 0000 0022 0000 9b75 0000 0037
0x0000030: 2cce be6d 0000 0040 5f5a 5903 3212 05b8
0x0000040: 0023 c000 055f 57b7 0026 a700 2b5f 5a57
0x0000050: b700 29a7 0022 5f5a 5903 3212 2bb8 0023
0x0000060: c000 2b5f 57b7 002e a700 0dbb 0030 5912
0x0000070: 32b7 0035 bf57 2ab6 0039 4e2d 2a5f b500
0x0000080: 3b2d 572c 123c 322a 123e b900 4403 0057
0x0000090: b1
Stackmap Table:
full_frame(@56,{UninitializedThis,Object[#74],Object[#76]},{Object[#78],UninitializedThis})
full_frame(@77,{UninitializedThis,Object[#74],Object[#76]},{Object[#78],UninitializedThis})
full_frame(@86,{UninitializedThis,Object[#74],Object[#76]},{Object[#78],UninitializedThis})
full_frame(@107,{UninitializedThis,Object[#74],Object[#76]},{Object[#78],UninitializedThis})
full_frame(@117,{Object[#2],Object[#74],Object[#76]},{Object[#78]})
来自ZeroTurnaround的人们也注意到了这种行为: http://zeroturnaround.com/forums/topic/verifyerror-bad-method-call-from-inside-of-a-branch/
问题很简单:当我们在下一版本的java中等待任何解决方案时,是否有针对此问题的解决方法?
答案 0 :(得分:10)
处理VerifyError最明显的方法是使用-noverify jvm选项。
(假设gradle版本&gt; = 1.12,并且gradle包装器为可执行bin)
首先,告诉gradle使用编译过程的选项(在build.gradle中):
compileGroovy {
groovyOptions.forkOptions.jvmArgs = ['-noverify']
}
对于运行时,您还应该传递jvm选项:
测试任务:
test {
jvmArgs '-noverify'
}
如果您使用应用程序插件:
applicationDefaultJvmArgs = ["-noverify"]
或者,通过任何其他方式。
那就是全部。快乐等待java发布修复:
答案 1 :(得分:5)
这是一个jdk bug&amp;它已在最新的jdk版本7 u72中修复
答案 2 :(得分:4)
当Constructor
调用super时会发生这种情况。
在@CompileStatic
上添加Constructor
可以解决问题。