写点什么

Okhttp 的 retrofit2 运行警告信息异常

作者:HoneyMoose
  • 2023-03-11
    美国
  • 本文字数:478 字

    阅读完需:约 2 分钟

最近在使用一个 okhttp 的项目运行的时候得到下面的警告信息。

WARNING: An illegal reflective access operation has occurredWARNING: Illegal reflective access by retrofit2.Platform (file:/C:/Users/yhu/.m2/repository/com/squareup/retrofit2/retrofit/2.9.0/retrofit-2.9.0.jar) to constructor java.lang.invoke.MethodHandles$Lookup(java.lang.Class,int)WARNING: Please consider reporting this to the maintainers of retrofit2.PlatformWARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operationsWARNING: All illegal access operations will be denied in a future release
复制代码

 


针对这个问题,已经有官方的说明, 说明的地址为:Illegal reflective access · Issue #3341 · square/retrofit · GitHub

解决办法

我们可以有下面的一些解决方案:

  1. 可以持续使用 Retrofit 2.8.x 或者更新的版本,或者你可以使用 JDK 17 的版本。

  2. 如果你不想升级 JDK 版本的话,你可以继续使用 Retrofit 2.7 版本来避免这个问题。

https://www.ossez.com/t/okhttp-retrofit2/14340

用户头像

HoneyMoose

关注

还未添加个人签名 2021-03-06 加入

还未添加个人简介

评论

发布
暂无评论
Okhttp 的 retrofit2 运行警告信息异常_HoneyMoose_InfoQ写作社区