我无法在我的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版本中不起作用。
答案 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