从 restTemplate.put 获取 STRING 响应

2022-09-01 18:43:06

我在使用Spring restTemplate时遇到问题。

现在,我正在发送一个PUT请求,以获得一个宁静的服务,而这个宁静的服务会向我发送重要信息作为回应。

问题是 restTemplate.put 是一个 void 方法,而不是一个字符串,所以我看不到那个响应。

根据一些答案,我已经改变了我的方法,现在我正在使用restTemplate.exchange,这是我的方法:

public String confirmAppointment(String clientMail, String appId)
{
    String myJsonString = doLogin();

    Response r = new Gson().fromJson(myJsonString, Response.class);

    // MultiValueMap<String, String> map;
    // map = new LinkedMultiValueMap<String, String>();

    // JSONObject json;
    // json = new JSONObject();

    // json.put("status","1");

    // map.add("data",json.toString());

    String url = getApiUrl() + "company/" + getCompanyId() + "/appointment/" + appId + "?session_token=" + r.data.session_token;
    String jsonp = "{\"data\":[{\"status\":\"1\"}]}";

    RestTemplate rest = new RestTemplate();

    HttpHeaders headers = new HttpHeaders();
    headers.add("Content-Type", "application/json");
    headers.add("Accept", "*/*");

    HttpEntity<String> requestEntity = new HttpEntity<String>(jsonp, headers);
    ResponseEntity<String> responseEntity = 
            rest.exchange(url, HttpMethod.PUT, requestEntity, String.class);

    return responseEntity.getBody().toString();
}

使用上述方法,我收到一个400错误请求

我知道我的参数,url等都很好,因为我可以做一个这样的restTemplate.put请求:

try {
    restTemplate.put(getApiUrl() + "company/" + getCompanyId() + "/appointment/" + appId + "?session_token=" + r.data.session_token, map);
} catch(RestClientException j)
{
    return j.toString();
}

问题(就像我之前说的)是上面的try/catch没有返回任何响应,但它给了我一个200响应。

所以现在我要问,怎么可能出错?


答案 1

下面介绍如何检查对 PUT 的响应。您必须使用 template.exchange(...) 才能完全控制/检查请求/响应。

    String url = "http://localhost:9000/identities/{id}";       
    Long id = 2l;
    String requestBody = "{\"status\":\"testStatus2\"}";
    HttpHeaders headers = new HttpHeaders();
    headers.setContentType(MediaType.APPLICATION_JSON); 
    HttpEntity<String> entity = new HttpEntity<String>(requestBody, headers); 
    ResponseEntity<String> response = template.exchange(url, HttpMethod.PUT, entity, String.class, id);
    // check the response, e.g. Location header,  Status, and body
    response.getHeaders().getLocation();
    response.getStatusCode();
    String responseBody = response.getBody();

答案 2

您可以使用标头向客户端发送简短的内容。或者,您也可以使用以下方法。

restTemplate.exchange(url, HttpMethod.PUT, requestEntity, responseType, ...)

您将能够通过该实体返回响应实体。