我尝试在groovy类中导入groovyx.net.http.RESTClient。
我的常规类是这样的:

void getREST() {

    def r = new RESTClient(url)
    def response = r.get(path:'test',headers:['Authorization': "auth"] )
    println "RESPONSE"
    println response.headers
    response.headers.each { it ->
        println it
    }

}

在我的类里面,我像这样导入RESTClient:
    import groovyx.net.http.RESTClient

但是,我收到“无法解析groovyx.net.http.RESTClient类”错误。我正在使用NetBeans IDE 7.4。

我已经使用以下代码配置了BuildConfig.groovy:
    compile ":rest:0.8"

并添加Maven仓库:
    mavenRepo "http://repository.codehaus.org/"

但是我仍然无法导入RESTClient。我该怎么办?

最佳答案

修理它。只需将另一个仓库添加到BuildConfig中:

mavenRepo "http://grails.org/plugins"

关于grails - 在Groovy类中导入groovyx.net.http.RESTClient,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21487301/

10-11 02:29