- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我正在尝试使用 Java9 (JDK9) 运行 DMelt 程序 (http://jwork.org/dmelt/) 程序,它给了我以下错误:
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.python.core.PySystemState (file:/dmelt/jehep/lib/jython/jython.jar) to method java.io.Console.encoding()
WARNING: Please consider reporting this to the maintainers of org.python.core.PySystemState
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
我该如何解决?我试图将 –illegal-access=permit 添加到脚本“dmelt.sh”的最后一行(我在 Linux 中使用 bash),但这并没有解决这个问题。我对此感到非常沮丧。我经常使用这个程序,很长一段时间。也许我永远不应该迁移到 JDK9
最佳答案
解决这个问题的理想方法是
reporting this to the maintainers of org.python.core.PySystemState
并要求他们在未来修复此类反射访问。
If the default mode permits illegal reflective access, however, thenit's essential to make that known so that people aren't surprised whenthis is no longer the default mode in a future release.
来自 threads on the mailing list 之一:
--illegal-access=permit
This will be the default mode for JDK 9. It opens every package inevery explicit module to code in all unnamed modules, i.e., code onthe class path, just as
--permit-illegal-access
does today.
The first illegal reflective-access operation causes a warning to beissued, as with
--permit-illegal-access
, but no warnings are issuedafter that point. This single warning will describe how to enablefurther warnings.
--illegal-access=deny
This disables all illegal reflective-access operations except forthose enabled by other command-line options, such as
--add-opens
.This will become the default mode in a future release.
像以前一样,明智地使用 --add-exports
可以避免任何模式下的警告消息。和 --add-opens
选项。
因此,当前可用的临时解决方案是使用 --add-exports
作为 docs 中提到的 VM 参数:
--add-exports module/package=target-module(,target-module)*
Updates module to
export
package totarget-module
, regardless ofmodule declaration. Thetarget-module
can be all unnamed to export toall unnamed modules.
这将允许 target-module
访问 package
中的所有公共(public)类型.如果您想访问仍将被封装的 JDK 内部类,则必须使用 --add-opens
允许 深度反射论据为:
--add-opens module/package=target-module(,target-module)*
Updates module to
open
package totarget-module
, regardless of moduledeclaration.
在您的情况下,当前访问 java.io.Console
,您可以简单地将其添加为 VM 选项 -
--add-opens java.base/java.io=ALL-UNNAMED
另外,请注意上面链接的同一线程
当 deny
成为默认模式,然后我希望 permit
至少支持一个版本,以便开发人员可以继续迁移他们的代码。 permit
, warn
, 和 debug
随着时间的推移,模式将被删除,--illegal-access
也将被删除。选项本身。
所以最好改变实现并遵循理想的解决方案。
关于java - JDK9 : An illegal reflective access operation has occurred. org.python.core.PySystemState,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46230413/
主要思想是将 EF Core nuget 包添加到 .NET Core 库项目,然后在一堆应用程序(例如 ASP.NET Core、Win 服务、控制台应用程序)中使用该库,而无需在每个应用程序中配置
我想要实现的是编写一个简单的.net核心后台工作程序(.net core 3.1)的代码,在该工作程序作为Windows服务运行时,我在其中将数据写入SQL Server数据库(通过EF Core 3
关于 .Net Core SDK download page 二进制文件有什么用?它与安装程序有何不同? 最佳答案 二进制文件是 .NET Core 的编译代码。它们拥有运行 .NET Core 所需
.NET Core 和 Entity Framework Core 之间的区别?我们可以在 .NET Core 中使用 Entity Framework Core 吗?两者都有什么优势? 最佳答案 E
.NET Core 和 ASP.NET Core 到底有什么区别? 它们是相互排斥的吗?我听说 ASP.NET Core 是基于 .NET Core 构建的,但它也可以基于完整的 .NET 框架构建。
我对 ASP.NET Core 开发完全陌生。我正在尝试使用单个模型和 mysql 创建一个简单的 asp.net core Web api 来存储模型数据,然后我想使用 Swagger 将其作为 R
.NET Core 和 Entity Framework Core 之间的区别?我们可以在 .NET Core 中使用 Entity Framework Core 吗?两者都有什么优势? 最佳答案 E
好吧,作为一个新的 .net 开发生态系统,我有点迷失在核心工具、版本等方面。 有人可以解释我之间的区别吗 VS 2015 核心工具预览版 x - See here .NET Core/SDK 与否
我已阅读有关如何通过信号器核心集线器从后台服务向客户端发送通知的文档。如何从客户端接收到后台服务的通知? 后台服务应该只是一个单例。 public class Startup { public
关闭。这个问题是opinion-based .它目前不接受答案。 想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文回答问题. 4年前关闭。 Improve t
非常简单的问题: 我正在尝试创建一个像这样的谓词构建器: var predicate = PredicateBuilder.False(); 但似乎在Net Core和EF Core中不可用。
在 .NET Core 自包含应用程序 中...我们需要在 project.json 中指定运行时 (RID) 我们希望我们的应用程序针对...发布为什么会这样? .NET Core 是跨平台的,与我
如何用 iCloud Core Data 替换我现有的 Core Data?这是我的持久商店协调员: lazy var persistentStoreCoordinator: NSPersistent
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 2 年前。 Improv
今天我正在学习新的 ASP.net 核心 API 3.1,我想将我的旧网站从 MVC4 转移到 Web API。除了一件事,一切都很好。数据库连接。在我的旧网站中,我为每个客户端(10/15 数据库)
我在 Visual Studio 2015 Update 3 和 .NET Core 1.0 中工作。我有一个 .NETCoreApp v1.0 类型的 Web API 项目。当我添加一个 .NET
我一直在尝试遵循 Ben Cull ( http://benjii.me/2016/06/entity-framework-core-migrations-for-class-library-proj
当我打开我的 vs 代码程序时,我收到以下消息: 无法找到 .NET Core SDK。 .NET Core 调试将不会启用。确保 .NET Core SDK 已安装并且在路径上。 如果我安装甚至卸载
我偶然发现了一个非常奇怪的问题。每当 Web 应用程序启动时,dotnet.exe 都会使用相当多的内存(大约 300M)。然而,当它触及某些部分时(我感觉这与 EF Core 使用有关),它会在短时
ASP.NET Core Web (.NET Core) 与 ASP.NET Core Web (.NET Framework) 有什么区别? .NET Framework 是否提供 similar
我是一名优秀的程序员,十分优秀!