当前位置: 首页 > 知识库问答 >
问题:

Groovysh正在给调用目标异常

白越
2023-03-14

我最近安装了时髦。

C:\Users\Shivendra Gupta>groovy -v
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/D:/IT%20Softwares/groovy-3.0.0-alpha-4/lib/groovy-3.0.0-alpha-4.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: 3.0.0-alpha-4 JVM: 11.0.2 Vendor: Oracle Corporation OS: Windows 10

现在,当我运行groovysh命令时,我得到了错误:

此外,当groovyConsole以奇怪的方式运行时:-

我认为非法反射访问警告可能是由于与jdk 11的兼容性问题。这是否意味着我将无法使用jdk 11进行groovy?有没有人遇到过类似的问题?我该如何解决这个问题?

编辑:我刚刚安装了java 9。我在groovysh和groovyConsole命令上得到了完全相同的错误,并且在runnung groovy -v命令上也得到了相同的警告

共有1个答案

李成礼
2023-03-14

这是由于JDK9/11与groovy之间的兼容性问题,我通过安装JDK 8解决了这个问题。

 类似资料: