An illegal reflective access operation has occurred

现象 

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

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

lizz666

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值