当我在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
是否有禁用此警告消息的选项?
4条答案
按热度按时间wwwo4jvm1#
您可以使用
GROOVY_TURN_OFF_JAVA_WARNINGS
作为临时修复程序来禁用Java警告:nqwrtyyt2#
这在
Groovy 2.5.8
中仍然是一个问题我在macOS上。我选择回退到Java 8(在homebrew中,做一个***brew cask install adoptopenjdk8***),警告就消失了。我知道如果你需要一个更新的JDK,这是不可取的(我不这样做)
sqyvllje3#
据报告,Groovy的当前稳定版本3.0.x解决了此问题,有关详细讨论,请参见GROOVY-8339。
m528fe3b4#
要通过将groovy版本升级到大于3.0.0的版本或通过将
--add-opens
传递到JVM来禁用警告,不幸的是,它需要打开许多模块,请检查以下commit