2

我正在尝试创建一个扩展模块,然后在不同的项目/脚本中使用它,但无法让它工作。这是我正在做的事情:

步骤 1:创建一个名为 TemperatureUtils.groovy 的文件,它是一个类类。这是来源:

package utils

class TemperatureUtils {

    Double toFahrenheit(Number celcius) {
        (9 * celcius / 5) + 32
    }

    Double toCelcius(Number fahrenheit) {
        (fahrenheit - 32) * 5 / 9
    }
}

步骤 2:创建扩展模块描述符 - org.codehaus.groovy.runtime.ExtensionModule,其内容如下:

moduleName=Some-Utils
moduleVersion=1.0
extensionClasses=utils.TemperatureUtils
staticExtensionClasses=

Step-3:编译类并手动创建一个jar文件,结构如下:

extensionUtils.jar
  |-- utils
  |     |-- TemperatureUtils.class
  |
  |-- META-INF
        |-- services
              |-- org.codehaus.groovy.runtime.ExtensionModule

第 4 步:创建一个新脚本来使用扩展模块。脚本来源:

import org.codehaus.groovy.control.CompilerConfiguration

def groovyScript = '''
//Following line just confirms that the jar file is indeed on the classpath of this script
assert 25 == (new utils.TemperatureUtils()).toCelcius(77)

//Actually using the category now
assert 77.toCelcius()       == 25
assert 25.toFahrenheit()    == 77
'''

def compilerConfig = new CompilerConfiguration()

compilerConfig.setClasspath(/E:\temp\jar\extensionUtils.jar/)

def shell = new GroovyShell(compilerConfig)
shell.evaluate(groovyScript)

步骤 5:执行脚本。在这里,我收到以下异常:

groovy.lang.MissingMethodException: No signature of method: java.lang.Integer.toCelcius() is applicable for argument types: () values: []
    at Script1.run(Script1.groovy:6)
    at ConsoleScript2.run(ConsoleScript2:16)

现在,我尝试了一些方法,但无法正常工作:

  • 从扩展模块描述符中删除了最后一行 - "staticExtensionClasses=",但它不起作用。
  • 通过使用 @Category(Number) 注释并从两个方法中删除参数(并在方法主体中使用 'this' 而不是 'celcius' 和 'fahrenheit' 参数名称),将 TemperatureUtils.groovy 类更改为实际类别但它仍然没有工作。
  • 谷歌了它,但没有找到太多信息。也偶然发现了这个,但这对我也没有帮助。

非常感谢精彩的 stackoverflow 社区可以提供的任何帮助!:)

4

1 回答 1

0

以下适用于我,使用 Groovy 2.4.5。基于这篇文章

首先,改变TemperatureUtilsstatic方法:

包工具

class TemperatureUtils {
    static Double toFahrenheit(Number celcius) {
        (9 * celcius / 5) + 32
    }

    static Double toCelcius(Number fahrenheit) {
        (fahrenheit - 32) * 5 / 9
    }
}

然后,我不会使用CompilerConfiguration,而只是简单地设置CLASSPATH. 例如

$ export CLASSPATH=../utils/build/libs/temp.jar
$ groovy client.groovy

哪里Client.groovy很简单:

def groovyScript = '''
//Following line just confirms that the jar file is indeed on the classpath of this script
assert 25 == (new utils.TemperatureUtils()).toCelcius(77)

//Actually using the category now
assert 77.toCelcius()       == 25
assert 25.toFahrenheit()    == 77
'''

def shell = new GroovyShell() 
shell.evaluate(groovyScript)
于 2017-09-27T23:04:00.280 回答