533
社区成员
大佬们
用NetBeans17画了一个gui
运行时会提示
[engine] WARNING: The polyglot context is using an implementation that does not support runtime compilation.
The guest application code will therefore be executed in interpreted mode only.
Execution only in interpreted mode will strongly impact the guest application performance.
For more information on using GraalVM see https://www.graalvm.org/java/quickstart/.
To disable this warning the '--engine.WarnInterpreterOnly=false' option or use the '-Dpolyglot.engine.WarnInterpreterOnly=false' system property.
有人遇到过相似问题吗?
如何处理的?
我没有用过,但是帮你gpt了一下
这个错误通常是由于在使用GraalVM时没有正确配置GraalVM的编译器选项导致的。在使用GraalVM时,需要在Java代码中添加以下选项来启用GraalVM的编译器:
java
--engine.WarnInterpreterOnly=false
或者使用以下系统属性:
bash
-Dpolyglot.engine.WarnInterpreterOnly=false
如果您已经添加了这些选项,但仍然遇到了错误,请确保在运行Java代码时使用了正确的GraalVM版本和配置。