Groovy响应post请求
时间: 2023-10-28 16:06:56 浏览: 132
groovy http请求
在Groovy中,你可以使用HttpBuilder库来发送HTTP请求并响应POST请求。下面是一个简单的示例:
```groovy
@Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.7.1')
import groovyx.net.http.HTTPBuilder
def http = new HTTPBuilder('http://localhost:8080')
http.request(Method.POST) { req ->
uri.path = '/api/endpoint'
headers.'Content-Type' = 'application/json'
body = [
message: 'Hello, World!',
author: 'Groovy'
]
response.success = { resp, json ->
println "Response status: ${resp.statusLine}"
println "Response body: $json"
}
response.failure = { resp ->
println "Request failed with status ${resp.statusLine}"
}
}
```
在这个例子中,我们使用HTTPBuilder库创建一个HTTPBuilder实例,然后使用`request`方法发送一个POST请求。在请求中,我们设置了URI路径、请求头(Content-Type为application/json)和请求体(一个包含message和author属性的JSON对象)。在响应中,我们定义了两个回调函数——一个成功的回调函数和一个失败的回调函数。成功的回调函数会在请求成功时被调用,它会输出响应状态和响应体。失败的回调函数会在请求失败时被调用,它会输出失败状态。
你可以根据你的需求修改这个示例来发送和响应POST请求。
阅读全文