如何导入 groovyx.net.http [英] How to import groovyx.net.http

查看:32
本文介绍了如何导入 groovyx.net.http的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我不了解 maven 或葡萄,而且我是个白痴,所以如果您的答案是去 grap X-dependency manager 然后 rtfm 就可以了",请一步一步告诉我.我在哪里可以找到和转储文件以使这条线工作:

I don't understand maven or grape, and I'm an idiot so give me the step by step if your answer is "go grap X-dependency manager and then rtfm and you're set." Where do i find and dump files to make this line work:

import groovyx.net.http.HTTPBuilder

它说 Groovy: 无法解析类 groovyx.net.http.HTTPBuilder

我也无法导入 groovyx.net.http.ContentType.URLENC 它说 unable to resolve class groovyx.net.http.ContentType.URLENC

Also I am unable to import groovyx.net.http.ContentType.URLENC It says unable to resolve class groovyx.net.http.ContentType.URLENC

更新:

显然您可以在 BuildConfig.groovy 中取消注释 mavenRepo "http://repository.codehaus.org"

apparently you can uncomment the line mavenRepo "http://repository.codehaus.org" in BuildConfig.groovy

推荐答案

既然您在谈论 BuildConfig.groovy,我假设问题的目标是在 grails 应用程序中使用 HttpBuilder.如果是这样,您可以使用

Since you're talking about BuildConfig.groovy I assume the question is targeted at using HttpBuilder in a grails application. If so, you could either use

compile('org.codehaus.groovy.modules.http-builder:http-builder:0.5.0') {
        excludes "commons-logging", "xml-apis", "groovy"
}

在 BuildConfig.groovy 的依赖项部分,或者更简单,只需安装 rest 插件:

in the dependencies-section of BuildConfig.groovy, or, even more easier, just install the rest plugin:

grails install-plugin rest

这篇关于如何导入 groovyx.net.http的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆