20
我有一個groovy腳本,我想在java中執行它。有人可以向我提供關於這可能性的進一步文件/例子嗎?如何在java中運行groovy腳本?
我有一個groovy腳本,我想在java中執行它。有人可以向我提供關於這可能性的進一步文件/例子嗎?如何在java中運行groovy腳本?
基本的Java + Groovy的整合:
// call groovy expressions from Java code
Binding binding = new Binding();
binding.setVariable("foo", new Integer(2));
GroovyShell shell = new GroovyShell(binding);
Object value = shell.evaluate(groovyScript);
See this article for more ways to call Groovy from Java
PS:您需要包括groovy-all-m.n.m.jar
例如groovy-all-2.1.6.jar
在Java程序中,for example:
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.4.8</version>
</dependency>
謝謝anubhava。解決了我的目的。我已經能夠從java源文件中調用groovy腳本。 :) – Ankit
這個問題是非常與Groovy的Java集成的話題。下面的答案是一個起點。 – Jayan