我尝试在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 repo:
mavenRepo "http://repository.codehaus.org/"
但我仍然无法导入RESTClient。我该怎么办?
答案 0 :(得分:0)
修复它。只需在BuildConfig中添加一个repo:
mavenRepo "http://grails.org/plugins"