Spring RestTemplate Statuscodeexception将自定义消息传递给异常处理

时间:2019-06-25 13:52:04

标签: java spring rest exception resttemplate

在我的应用中,服务A与服务B通信。 在服务B中,我执行一些数据库查询,以便出现NOT_FOUND状态。

代码:

服务A

try{
RestTemplate.exchange()...
}catch(HttpStatusCodeException e){

return new ResonseEntity<String>(// Here custom message of service B extracted from e //,e.getStatusCode)
}

服务B:

return new ResponseEntity<String> ("My Error Message", HttpStatus.NOT_FOUND)

因此,基本上我想在服务A的异常处理中使用“我的错误消息”。是否可以将其传递给异常?

1 个答案:

答案 0 :(得分:1)

HttpStatusCodeException继承了一个名为getResponseBodyAsString的方法,只需使用e.getResponseBodyAsString(),您将获得服务B发送的自定义消息。