我尝试使用 ClientResource 发出 POST 请求,我能够检索响应状态,我也想我收到异常时会获得响应正文。
这是我的代码:
public static Pair<Status, JSONObject> post(String url, JSONObject body) {
ClientResource clientResource = new ClientResource(url);
try {
Representation response = clientResource.post(new JsonRepresentation(body), MediaType.APPLICATION_JSON);
String responseBody = response.getText();
Status responseStatus = clientResource.getStatus();
return new ImmutablePair<>(responseStatus, new JSONObject(responseBody));
} catch (ResourceException e) {
logger.error("failed to issue a POST request. responseStatus=" + clientResource.getStatus().toString(), e);
//TODO - how do I get here the body of the response???
} catch (IOException |JSONException e) {
throw e;
} finally {
clientResource.release();
}
}
以下是我的服务器资源在发生故障时返回的代码
getResponse().setStatus(Status.CLIENT_ERROR_FORBIDDEN);
JsonRepresentation response = new JsonRepresentation( (new JSONObject()).
put("result", "failed to execute") );
return response;
我试图抓住&#34;结果&#34;没有成功
答案 0 :(得分:2)
实际上,getResponseEntity
方法返回响应的内容。它对应于一种表示。如果您需要一些JSON内容,可以用JsonRepresentation
类包装它:
try {
(...)
} catch(ResourceException ex) {
Representation responseRepresentation
= clientResource.getResponseEntity();
JsonRepresentation jsonRepr
= new JsonRepresentation(responseRepresentation);
JSONObject errors = jsonRepr.getJsonObject();
}
您可以注意到Restlet还支持带注释的异常。
否则我写了一篇关于这个主题的博客文章:http://restlet.com/blog/2015/12/21/exception-handling-with-restlet-framework/。我认为它可以帮助你。
亨利