1

我正在尝试在 RestClient 调用中发送带有 Http 状态代码的自定义错误消息

微服务1代码:

try{
   String method = request.getMethod();
   RestTemplate restTemplate = new RestTemplate();
   ResponseEntity<byte[]> responseEntity = restTemplate.exchange("/someUrl", method, entity, byte[].class);
} catch (HttpServerErrorException | HttpClientErrorException e) {
   String errorString = e.getResponseBodyAsString();
   if(Strings.isNullOrEmpty(errorString)) {
      errorString = e.getMessage();
   }
   return new ResponseEntity<>(errorString, new HttpHeaders(), e.getStatusCode());
}

微服务 2 代码:

@RequestMapping(value="/someUrl", method= { RequestMethod.GET, RequestMethod.POST})
public ResponseEntity<?> executeSoapServer(@RequestHeader HttpHeaders headers, HttpServletRequest request, HttpServletResponse resp){
  JsonObject obj = new JsonObject();
  obj.addProperty("errorMessage", "test error message")
  return new ResponseEntity<>(obj.toString(), new HttpHeaders(), HttpStatus.UNAUTHORIZED);
}

从微服务 1 GET 调用响应:响应状态码 - 401

{
  "errorMessage": "test error message"
}

来自微服务 1 POST 调用响应:响应状态码 - 401

401 null

对于 GET 方法,它按预期工作,但对于微服务到微服务,POST/PUT/DELETE 不起作用。

当我使用 POST 方法从邮递员直接点击微服务 2 时,它可以正常工作,但是当我使用 POST 方法从微服务 1 中点击微服务 2 时,它不起作用。

当我从下面的微服务 1 中点击微服务 2 控制器时,响应标头是:

{
Access-Control-Allow-Credentials=[true], 
Access-Control-Allow-Methods=[GET,POST,PUT,PATCH,DELETE,HEAD], 
X-Application-Context=[eportal:local:8082], 
ep-flowid=[c35c3098-a7a5-712a-8e38-4d1ad99fccd0], 
Access-Control-Expose-Headers=[ep-flowid], 
X-Content-Type-Options=[nosniff], 
X-XSS-Protection=[1; mode=block], 
Cache-Control=[no-cache, no-store, max-age=0, must-revalidate], 
Pragma=[no-cache], 
Expires=[0], 
X-Frame-Options=[DENY], 
Content-Type=[application/json;charset=UTF-8], 
Content-Length=[29], 
Date=[Mon, 01 Jun 2020 13:59:59 GMT]
}

当我从下面的邮递员中点击微服务 2 控制器时,响应标头是:

在此处输入图像描述

4

0 回答 0