- 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/
我有: func NewMethodDescriptor(typ interface{}) *MethodDescriptor { reflectedMethod := reflect.Val
我需要确定地检查 reflect.Type 是否是一个错误。 错误没有反射(reflect)类型。在 go reflect 中检查类型错误的正式/惯用方式是什么? Go Playground Full
根据 reflect 文档 reflect.Value.MapIndex() 应返回一个 reflect.Value,它表示存储在 map 特定键处的数据的值.所以我的理解是以下两个表达式应该是相同的
与 reflect pkg 有点混淆 所有示例都使用 reflect.NewValue() 来获取 var 的 reflect.Value,但是 func NewValue 未记录在 http://g
在计算机语言的上下文中,我从未找到关于反射的词源的明确解释,所以我想在这里澄清一下。 “Reflection”源于拉丁语,有以下definitions : bend back turn back tu
我写了一个漂亮的函数,它可以接受 system.object ,反射(reflect)其属性并将对象序列化为 JSON 字符串。它看起来像这样: public class JSONSerializer
我正在尝试创建一个函数 import Language.Reflection foo : Type -> TT 我尝试使用reflect 策略: foo = proof { intro t
最近我和一位同事谈论 C++,感叹没有办法获取带有类字段名称的字符串并提取具有该名称的字段;换句话说,它缺乏反射(reflection)。他困惑地看着我,并问什么时候有人需要做这样的事情。 除了“嘿,
我正在考虑允许模块与属性文件中的类一起使用的想法;像 availableModules.properties Contact=org.addressbook.ContactMain Business=
这个问题特别与为具有大量字段的对象覆盖 equals() 方法有关。首先,让我说这个大对象不能在不违反 OO 原则的情况下分解成多个组件,所以告诉我“没有类应该有超过 x 个字段”无济于事。 继续前进
例子 router.Get(path, handler) // works fine methodStr = "Get" router.methodStr(path, handler) // e
我一直坚持使用反射库的问题。由于很多推荐,我决定使用它,但我只是在学习,有些部分并不是很容易.. 我有这部分代码: func countDataByName(sourceName string, s
我有一个包含一些 url 参数的特定结构,我想使用 reflect 构建一个 url 参数字符串以遍历结构字段,这样我就不会关心结构真正包含什么。 假设我有一个这样的结构: type Student
我正在尝试从 reflect.Value 中检索字符串值, 我希望 value.String()成为okok但我得到了相反。 我错过了什么吗? package main import ( "f
为了避免创建 org.reflections.Reflections 类的多个实例,我只想创建一个并根据需要重用。有谁知道这个类是否是线程安全的? 如果它不是线程安全的,我知道我可以使用 Java 的
我最近对引用、具体化和反射(reflection)感到困惑。有人可以很好地解释他们的关系和差异(如果有的话)吗? 最佳答案 引用 这可能是最简单的一个。考虑一下当您在 REPL 中键入以下内容时会发生
less main.go输出: ``` package main import ( "reflect" "net/url" "fmt" ) type User struct {
我在 golang 中使用 gorm 包 ( https://github.com/jinzhu/gorm ) 作为我的数据库库。我有很多类(数据库表),如“酒店”或“套餐”。复制代码不是好的编程习惯
我有代码 var t reflect.Type = LaunchController(route.controller) // create controller ptr . var
是否有可能以及如何在不从类型创建对象并调用它的情况下获取类型的 reflect.Type reflect.TypeOf(obj) Java 中的内容是:MyType.class 最佳答案 您可以使用以
我是一名优秀的程序员,十分优秀!