在运行时执行 Java 中的 Groovy 代码

发布于 2024-09-06 13:55:38 字数 537 浏览 5 评论 0原文

是否可以执行在java应用程序中动态加载的groovy代码。 例如,有一个数据库表,其中包含小段常规代码,例如:

def test(${val_to_insert_from_java}){
    if (${val_to_insert_from_java} > 10){
        return true;
    }
    return false;
}

其中 ${val_to_insert_from_java} 是在执行 java 代码期间插入的某些实际值的占位符,例如

String groovyFuncSource = getFromDb();
groovyFuncSource.replace(${val_to_insert_from_java}, 9);
Object result = <evaluate somehow groovyFuncSource>;

:有一种方法可以评估这样的 Groovy 代码吗?或者您可能会建议我采用其他方法来实现这一点。

Is it possible to execute groovy code dynamically loaded in java application.
For example there is a database table which contains small pieces of groovy code, like:

def test(${val_to_insert_from_java}){
    if (${val_to_insert_from_java} > 10){
        return true;
    }
    return false;
}

Where ${val_to_insert_from_java} is a placeholder for some real value which gonna be inserted during execution of java code, like:

String groovyFuncSource = getFromDb();
groovyFuncSource.replace(${val_to_insert_from_java}, 9);
Object result = <evaluate somehow groovyFuncSource>;

Is there is a way to evaluate such piece of Groovy code? Or may be you advise me some other approach how to implemnt this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

九八野马 2024-09-13 13:55:38

是的,你可以这样做。

请参阅链接 http://groovy.codehaus.org/Embedding+Groovy

您可能想使用请谨慎使用此方法,因为执行存储在数据库中的代码会在应用程序中引入安全缺陷。例如,一些作为文本恶意插入数据库中的代码可以执行...几乎任何操作,除非您检查它。

Yes, you can do this.

See the link http://groovy.codehaus.org/Embedding+Groovy

You may want to use caution with this approach, because executing code stored in a database will introduce security flaws in your application. For example, some code maliciously inserted as text in your database could do ... almost anything unless you're checking it.

最好是你 2024-09-13 13:55:38

另一种选择是使用 JavaScript 而不是 Groovy。为什么?因为 Rhino JavaScript 引擎已经随 JDK 一起提供了。因此,如果您还没有在项目中使用 Groovy,那么它就少了一种依赖性。

An alternative would be to use JavaScript instead of Groovy. Why? Because the Rhino JavaScript engine already comes with the JDK. So if you aren't already using Groovy in your projects, it's one less dependency.

幸福丶如此 2024-09-13 13:55:38

从 Java 6 开始,您可以使用 Java 脚本 API 来执行此操作。 Java 脚本 API 允许您在 Java 应用程序中使用各种脚本语言。

您可以在此处找到有关 Java 脚本的更多信息。

From Java 6 you can use Java Scripting API to do that. Java scripting API allows you to use various scripting languages within Java apps.

You can find more about Java Scripting here.

彼岸花ソ最美的依靠 2024-09-13 13:55:38

是的,您可以使用 Groovy 脚本引擎在执行时评估 Groovy 源代码 - 当然,该源代码可以是字符串替换的结果。

据我所知,有多种方法可以实现这一目标,这些方法各有利弊。

<插头>
有关更多详细信息,请参阅 Groovy 实践的第 11 章。

Yes, you can use the Groovy script engine to evaluate Groovy source code at execution time - and of course that source code can be the result of string replacements.

From what I remember, there are various ways you can accomplish this, which will have different pros and cons.

<plug>
See chapter 11 of Groovy in Action for more details.
</plug>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文