【发布时间】:2022-01-22 09:53:08
【问题描述】:
同样的问题 Groovy - WARNING: An illegal reflective access operation has occurred,就是这样
- 这是在 Ubuntu 21.10 中
- 最重要的是该解决方案(将
--add-opens传递给 JVM),我无法让它为我工作。
$ groovy -version
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/usr/share/groovy/lib/groovy-2.4.21.jar) to method java.lang.Object.finalize()
WARNING: Please consider reporting this to the maintainers of org.codehaus.groovy.reflection.CachedClass
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
Groovy Version: 2.4.21 JVM: 11.0.12 Vendor: Ubuntu OS: Linux
$ java -version
openjdk version "11.0.12" 2021-07-20
OpenJDK Runtime Environment (build 11.0.12+7-Ubuntu-0ubuntu3)
OpenJDK 64-Bit Server VM (build 11.0.12+7-Ubuntu-0ubuntu3, mixed mode, sharing)
$ java --add-opens java.base/java.lang=ALL-UNNAMED -version
openjdk version "11.0.12" 2021-07-20
OpenJDK Runtime Environment (build 11.0.12+7-Ubuntu-0ubuntu3)
OpenJDK 64-Bit Server VM (build 11.0.12+7-Ubuntu-0ubuntu3, mixed mode, sharing)
$ groovy --add-opens java.base/java.lang=ALL-UNNAMED -version
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/usr/share/groovy/lib/groovy-2.4.21.jar) to method java.lang.Object.finalize()
WARNING: Please consider reporting this to the maintainers of org.codehaus.groovy.reflection.CachedClass
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
Caught: java.io.FileNotFoundException: /export/home/me/--add-opens (/export/home/me/--add-opens)
java.io.FileNotFoundException: /export/home/me/--add-opens (/export/home/me/--add-opens)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
$ apt-cache policy groovy
groovy:
Installed: 2.4.21-1
Candidate: 2.4.21-1
Version table:
*** 2.4.21-1 500
500 http://archive.ubuntu.com/ubuntu impish/universe amd64 Packages
500 http://archive.ubuntu.com/ubuntu impish/universe i386 Packages
100 /var/lib/dpkg/status
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 21.10
Release: 21.10
Codename: impish
更新,我也尝试设置JAVA_OPTS:
export JAVA_OPTS="--add-opens java.base/java.lang=ALL-UNNAMED"
$ groovy -version
Unrecognized option: --add-opens
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
如何摆脱该警告信息?
【问题讨论】:
-
Groovy 2.4.21 有很多这样的问题。 Groovy 2.5 和 3 以及很快 4 都在使用方法句柄和其他适当的访问机制方面取得了长足的进步。
-
使用 groovy 3.0 更好地使用 java 11。 groovy 2.5 开始支持 java 9。为 java 8 设计的 groovy 2.4。groovy-lang.org/releasenotes/groovy-2.5.html
-
谢谢@daggett,我想你已经搞定了。只是我最新的 Ubuntu 21.10 仍然只提供 groovy-2.4.21。出于这个特殊原因,我想我会使用 java 8(由 openjdk-8-jdk:amd64 提供)而不是使用外部
sdkman工具安装 groovy 3.0,因为我只需要一些东西来工作,不需要成为最新最好的,Java 8 对我来说很好。谢了!
标签: java ubuntu groovy java-11