带有闭包参数的HTTPBuilder get方法返回MissingMethodException

时间:2011-10-09 02:27:33

标签: groovy httpbuilder missingmethodexception

以下代码:

def http = new HTTPBuilder( 'http://twitter.com/statuses/' )

http.get( path: 'user_timeline.json', 
    query: [id:'httpbuilder', count:5] ) { resp, json ->

    println resp.status

    json.each {  // iterate over JSON 'status' object in the response:
        println it.created_at
        println '  ' + it.text
    }
}

为什么要获得例外?我使用http://groovy.codehaus.org/modules/http-builder/doc/json.html中的相同代码,它应该有效。

1 个答案:

答案 0 :(得分:1)

这是IDE的问题,Eclipse groovy插件不能很好地运行。