RestClient Grails导入失败

时间:2014-06-22 16:03:19

标签: grails groovy

我无法在我的grails项目中导入RESTClient。消息是:

Groovy:unable to resolve class groovyx.net.http.RESTClient

BuildConfig.groovy我取消注释:

mavenRepo "http://repository.codehaus.org"

并补充说:

compile ":rest-client-builder:2.0.0"

我使用的是Grails 2.3.8和Windows 7。

有什么想法吗? grails install-plugin在这个grails版本中不起作用。

1 个答案:

答案 0 :(得分:3)

rest-client-builder插件无法提供名为groovyx.net.http.RESTClient的课程。我认为你对Groovy的REST客户端模块感到困惑:

http://groovy.codehaus.org/modules/http-builder/doc/rest.html

然而,在Grails应用程序中我们不建议使用上述模块,使用rest-client-builder插件可以获得更好的效果,只需要使用正确的API。

rest-client-builder的文档位于

https://github.com/grails-plugins/grails-rest-client-builder/

http://grails.github.io/grails-data-mapping/rest-client/api/index.html