002-05-RestTemplate 使用常见问题-非200请求捕获

Posted bjlhx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了002-05-RestTemplate 使用常见问题-非200请求捕获相关的知识,希望对你有一定的参考价值。

一、概述

1.1、RestTemplate报错时时获取不到错误信息

捕获异常后

try 
            result = restTemplate.postForEntity(faceConfig.getApiUrl(), new HttpEntity<>(paramMap, getHttpHeaders()), String.class).getBody();
         catch (HttpClientErrorException e) 
            result = e.getResponseBodyAsString();
        

 

 

dd 

以上是关于002-05-RestTemplate 使用常见问题-非200请求捕获的主要内容,如果未能解决你的问题,请参考以下文章