Groovy内置REST / HTTP客户端?

时间:2014-09-05 19:14:03

标签: rest groovy httpbuilder

我听说Groovy有一个内置的REST / HTTP客户端。我能找到的唯一一个库是HttpBuilder就是这个吗?

基本上我正在寻找一种从Groovy代码中执行HTTP GET的方法,而不必导入任何库(如果可能的话)。但是因为这个模块似乎不是核心Groovy的一部分,所以我不确定我是否有正确的库。

7 个答案:

答案 0 :(得分:63)

Native Groovy GET和POST

// GET
def get = new URL("https://httpbin.org/get").openConnection();
def getRC = get.getResponseCode();
println(getRC);
if(getRC.equals(200)) {
    println(get.getInputStream().getText());
}

// POST
def post = new URL("https://httpbin.org/post").openConnection();
def message = '{"message":"this is a message"}'
post.setRequestMethod("POST")
post.setDoOutput(true)
post.setRequestProperty("Content-Type", "application/json")
post.getOutputStream().write(message.getBytes("UTF-8"));
def postRC = post.getResponseCode();
println(postRC);
if(postRC.equals(200)) {
    println(post.getInputStream().getText());
}

答案 1 :(得分:54)

如果您的需求很简单并且您想避免添加其他依赖项,那么您可以使用Groovy添加到getText()类的java.net.URL方法:

new URL("http://stackoverflow.com").getText()

// or

new URL("http://stackoverflow.com")
        .getText(connectTimeout: 5000, 
                readTimeout: 10000, 
                useCaches: true, 
                allowUserInteraction: false, 
                requestProperties: ['Connection': 'close'])

如果您希望返回二进制数据,那么newInputStream()方法也提供了类似的功能。

答案 2 :(得分:24)

最简单的一个是:

def html = "http://google.com".toURL().text

答案 3 :(得分:12)

您可以利用带()的Groovy功能,URLConnection的改进以及简化的getter / setter:

获取:

String getResult = new URL('http://mytestsite/bloop').text

发表:

String postResult
((HttpURLConnection)new URL('http://mytestsite/bloop').openConnection()).with({
    requestMethod = 'POST'
    doOutput = true
    setRequestProperty('Content-Type', '...') // Set your content type.
    outputStream.withPrintWriter({printWriter ->
        printWriter.write('...') // Your post data. Could also use withWriter() if you don't want to write a String.
    })
    // Can check 'responseCode' here if you like.
    postResult = inputStream.text // Using 'inputStream.text' because 'content' will throw an exception when empty.
})

注意,当您尝试从HttpURLConnection读取值时,POST将开始,例如responseCodeinputStream.textgetHeaderField('...')

答案 4 :(得分:10)

HTTPBuilder就是这样。非常容易使用。

import groovyx.net.http.HTTPBuilder

def http = new HTTPBuilder('https://google.com')
def html = http.get(path : '/search', query : [q:'waffles'])

如果您需要错误处理并且通常比仅通过GET获取内容更多功能,它尤其有用。

答案 5 :(得分:2)

我认为http-builder不是一个Groovy模块,而是apache http-client之上的外部API,所以你需要导入类并下载一堆API。您最好使用Gradle或@Grab下载jar和依赖项:

@Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.7.1' )
import groovyx.net.http.*
import static groovyx.net.http.ContentType.*
import static groovyx.net.http.Method.*

注意:由于CodeHaus网站出现故障,您可以在(https://mvnrepository.com/artifact/org.codehaus.groovy.modules.http-builder/http-builder)找到JAR

答案 6 :(得分:0)

import groovyx.net.http.HTTPBuilder;

public class HttpclassgetrRoles {
     static void main(String[] args){
         def baseUrl = new URL('http://test.city.com/api/Cirtxyz/GetUser')

         HttpURLConnection connection = (HttpURLConnection) baseUrl.openConnection();
         connection.addRequestProperty("Accept", "application/json")
         connection.with {
           doOutput = true
           requestMethod = 'GET'
           println content.text
         }

     }
}