如何在unix-ERROR中执行groovy jar

时间:2013-09-19 19:51:00

标签: unix groovy

我有一个在eclipse中开发的groovy项目,里面有一个包(hello)和一个groovy类(helloWorld.groovy)。我已经导出了jar(Say HelloWorld.jar)。我试图通过以下方式在unix中执行这个jar: -

groovy -cp /tmp/HelloWorld.jar hello.helloWorld

但是得到以下错误: -

Caught: java.io.FileNotFoundException: /tmp/hello.helloWorld (/tmp/hello.helloWorld)
java.io.FileNotFoundException: /tmp/hello.helloWorld (/tmp/hello.helloWorld)

2 个答案:

答案 0 :(得分:5)

除非包含静态方法,否则类只是一个声明。

您可以创建类的实例并从命令行脚本调用方法。

HelloWorld.groovy

package hello
class HelloWorld {
    def main() { println "Hello World!" }
}

编译和jar:

groovyc HelloWorld.groovy
jar -cf HelloWorld.jar hello

执行:

groovy -cp HelloWorld.jar -e 'new hello.HelloWorld().main()'

您可以在不创建类实例的情况下调用静态方法:

HelloWorld.groovy

package hello
class HelloWorld {
    static main() { println "Hello World!" }
}

编译和jar:

groovyc HelloWorld.groovy
jar -cf HelloWorld.jar hello

执行:

groovy -cp HelloWorld.jar -e 'hello.HelloWorld.main()'

答案 1 :(得分:0)

groovy命令通常用于在一个步骤中编译和运行groovy文件。命令行参数是脚本文件,而不是类名。

如果您的groovy脚本已编译为class个文件,请使用Java运行它。例如:

java -cp /tmp/HelloWorld.jar:$GROOVY_HOME/embeddable/groovy-all-2.1.7.jar hello.helloWorld