在 Java 17 中使用 Javascript 脚本引擎
我必须将一个项目从 Java 8 迁移到 Java 17。
我可以解决大多数问题,但它包含一个方法,在该方法中我使用 ScriptEngineManager 来评估数学术语。
ScriptEngineManager mgr = new ScriptEngineManager();
ScriptEngine e = mgr.getEngineByName("JavaScript");
String t = "5*7";
if (isMathTerm(t)) {
System.out.println(e.eval(t).toString());
}
在 Java 8 中它按要求工作,但在 Java 17 中 e
始终为 null。
据google称,Java 17中不再支持JavaScript引擎。
由于项目限制,我不允许使用第三方库。
Java 17 中有没有正确的方法来处理这个问题?
I have to move a project from Java 8 to Java 17.
I could solve most issues, but it contains a method, in which I use the ScriptEngineManager to evaluate a mathematical term.
ScriptEngineManager mgr = new ScriptEngineManager();
ScriptEngine e = mgr.getEngineByName("JavaScript");
String t = "5*7";
if (isMathTerm(t)) {
System.out.println(e.eval(t).toString());
}
In Java 8 it works as required, but in Java 17 e
is always null.
According to google, the JavaScript Engine is no longer supported in Java 17.
Due to project constraints, I am not allowed to use third party libraries.
Is there a proper way to handle this in Java 17?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Nashorn JavaScript 引擎已从 Java 中删除。 在 Java 11 中已弃用,在 Java 15 中删除了。
因此,您需要使用不同的脚本引擎,例如 GraalVM。
您可以使用以下命令检查可用的引擎
,或者将不同的脚本引擎添加到您的项目中,例如velocity、jexl、groovy...
The Nashorn JavaScript Engine has been removed from Java. Deprecated in Java 11, removed in Java 15.
So you need to use different script engine, as GraalVM.
You can check which engines available using
Or add different script engines to your project as velocity, jexl, groovy,...
Nashorn 脚本引擎现在作为单独的独立项目进行维护
https://github.com/openjdk/nashorn
Maven该项目的工件也可用:
https://mvnrepository.com/artifact/org.openjdk.nashorn
Nashorn script engine is maintained as a separate standalone project now
https://github.com/openjdk/nashorn
Maven artifact from this project is available as well:
https://mvnrepository.com/artifact/org.openjdk.nashorn