Groovy JDK 11禁用警告消息

时间:2018-10-22 13:25:17

标签: groovy java-11

当我在JDK 11上运行groovy 2.5.3时,它会发出警告消息。是否有禁用此警告消息的选项?

groovy -e 'print "hi"'
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.codehaus.groovy.vmplugin.v7.Java7$1 (file:/home/user/.sdkman/candidates/groovy/current/lib/groovy-2.5.3.jar) to constructor java.lang.invoke.MethodHandles$Lookup(java.lang.Class,int)
WARNING: Please consider reporting this to the maintainers of org.codehaus.groovy.vmplugin.v7.Java7$1
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release

谢谢

3 个答案:

答案 0 :(得分:1)

您可以使用GROOVY_TURN_OFF_JAVA_WARNINGS作为临时解决方案来禁用Java警告:

$ GROOVY_TURN_OFF_JAVA_WARNINGS=true groovy -e 'print "hi\n"'
hi

答案 1 :(得分:1)

这在Groovy 2.5.8中仍然是一个问题

我在MacOS上。我选择使用Java 8(在自制软件中,执行酒桶安装takeopenopenjdk8 ),警告消失了。我知道如果您需要更新的JDK(我不需要)

标记

答案 2 :(得分:1)

据报道,当前的Groovy稳定版本3.0.x可解决此问题,有关详细讨论,请参见GROOVY-8339