An illegal reflective access operation has occurred

编程知识 更新时间:2023-04-06 11:29:11

现象 

idea启动项目时出现警告:

"/Applications/IntelliJ IDEA.app/Contents/jbr/Contents/Home/bin/java" ...
Connected to the target VM, address: '127.0.0.1:62251', transport: 'socket'
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.$ReflectUtils$1 (file:/Users/lizz/.m2/repository/com/google/inject/guice/4.1.0/guice-4.1.0.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)
WARNING: Please consider reporting this to the maintainers of com.google.inject.internal.cglib.core.$ReflectUtils$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

原因分析

错误提示:com.google.inject.internal.cglib.core.$ReflectUtils$1访问了java.lang.ClassLoader类。

因为JDK9的新特性模块系统(module system)对jdk中的模块进行了反射检查,对于反射了jdk中的类的操作进行警告。

处理办法

方法一:降低jdk版本

将idea中的项目运行环境从高版本调整为JDK8即可,如果moudle格式,可能还需要将每个moudle单独设置。

File>Project Structure>Project Settings>Project>Project SDK.

方法二:开放访问权限

JDK9+可以使用启动参数中增加“--add-opens <package>/<class>=ALL-UNNAMED”的方法允许其他模块访问。

在RUN>Edit Configurations>VM options 中增加参数,如:

--add-opens java.base/java.lang=ALL-UNNAMED  --add-opens java.base/java.util=ALL-UNNAMED  --add-opens java.desktop/java.awt.font=ALL-UNNAMED

--add-opens java.base/java.lang=ALL-UNNAMED  --add-opens java.base/java.util=ALL-UNNAMED  --add-opens java.base/java.lang.reflect=ALL-UNNAMED  --add-opens java.base/java.text=ALL-UNNAMED --add-opens java.desktop/java.awt.font=ALL-UNNAMED

 

更多推荐

An illegal reflective access operation has occurred

本文发布于:2023-04-06 11:29:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/6b6dd5d8b5febe6e21a982ab039c428c.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:reflective   illegal   access   occurred   operation

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!

  • 49316文章数
  • 14阅读数
  • 0评论数