Şu anda yalnızca statusCode olan HttpResponseException alıyorum. Tam cevap kaynağını nasıl alabilirim?Groovy RestClient yanıtının tam yanıtı nasıl alınamadı Yanıt
[oaf.error] groovyx.net.http.HttpResponseException: Internal Server Error
Şu anda yalnızca statusCode olan HttpResponseException alıyorum. Tam cevap kaynağını nasıl alabilirim?Groovy RestClient yanıtının tam yanıtı nasıl alınamadı Yanıt
[oaf.error] groovyx.net.http.HttpResponseException: Internal Server Error
özel başarısız tepki işleyicisi ekleyin:: Aslında
restClient = new RESTClient("http://${Server}")
restClient.handler.failure = { resp, data ->
resp.setData(data)
String headers = ""
resp.headers.each {
headers = headers+"${it.name} : ${it.value}\n"
}
throw new HttpResponseException(resp.getStatus(),"HTTP call failed. Status code: ${resp.getStatus()}\n${headers}\n"+
"Response: "+(resp as HttpResponseDecorator).getData())
return resp
}
, çıkartabilirsiniz İşte
Ben
restClient = new RESTClient("http://${Server}")
try {
HttpResponseDecorator resp = restClient.post(path,body,requestContentType)
as HttpResponseDecorator
return JSONObject.fromObject(resp.getData()).get("topKey","");
}
catch (HttpResponseException e) {
error(e.toString())
}
Ve sadece çıkış bu kullanıyorum kodudur atılan istisnadan tam yanıt. Örneğin yakalanan istisnanız e
ise ve yanıt gövdesi JSON myCustomErrorCode
adlı bir alan içermeli, e.statusCode
'a ek olarak e.response.data.myCustomErrorCode
'a bakarak değerini kontrol edebilirsiniz.