在我的应用程序中,服务 A 与服务 B 通信。在服务 BI 中执行一些数据库查询,以便出现 NOT_FOUND 状态。代码:服务Atry{RestTemplate.exchange()...}catch(HttpStatusCodeException e){return new ResonseEntity<String>(// Here custom message of service B extracted from e //,e.getStatusCode)}服务乙:return new ResponseEntity<String> ("My Error Message", HttpStatus.NOT_FOUND)所以基本上我想在服务 A 的异常处理中使用“我的错误消息”。有没有办法将它传递给异常?
1 回答
繁星coding
TA贡献1797条经验 获得超4个赞
HttpStatusCodeException
继承了一个名为getResponseBodyAsString
simply use的方法e.getResponseBodyAsString()
,您将获得服务 B 发送的自定义消息。
添加回答
举报
0/150
提交
取消