如何在java中运行groovy脚本?

时间:2013-07-22 14:29:43

标签: java groovy

我有一个groovy脚本,我想在java中执行它。有人可以向我提供有关如何实现这一目标的进一步文档/示例吗?

1 个答案:

答案 0 :(得分:50)

基本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,例如Java程序中的groovy-all-2.1.6.jar for example

<dependency>
  <groupId>org.codehaus.groovy</groupId>
  <artifactId>groovy-all</artifactId>
  <version>2.4.8</version>
</dependency>