在我的应用程序中,服务 A 与服务 B 通信。在服务 BI 中执行一些数据库查询,以便出现 NOT_FOUND 状态。
代码:
服务A
try{
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 的异常处理中使用“我的错误消息”。有没有办法将它传递给异常?
繁星coding
相关分类