Groovy http请求,解析标头值

时间:2017-08-02 07:14:15

标签: http post groovy http-headers httprequest

我从应用程序1发送HTTP请求

http://localhost:8888/inputs/example-input?ProductId=49823&Orders_orderId=27759

申请2。

在应用程序2中,我收到了普通字符串:

inputs/example-input?ProductId=49823&Orders_orderId=27759

我需要在它们自己的变量中获取值,如下所示:

def productId = 49823
def orderId = 27759

是否有一些groovy方法来解析输入字符串inputs/example-input?ProductId=49823&Orders_orderId=27759

1 个答案:

答案 0 :(得分:3)

您需要手动解析输入 ,例如:

http.headers.preserve=Date