How do I read the response header from RestTemplate?

后端 未结 4 857
醉梦人生
醉梦人生 2020-12-05 06:34

I am posting information to a web service using RestTemplate.postForObject. Besides the result string I need the information in the response header. Is there any way to ge

4条回答
  •  没有蜡笔的小新
    2020-12-05 07:12

      HttpEntity entity = new HttpEntity<>( postObject, headers ); // for request
        HttpEntity response = template.exchange(url, HttpMethod.POST, entity, String.class);
        String result= response.getBody();
        HttpHeaders headers = response.getHeaders();
    

提交回复
热议问题