我使用webflux Mono(在Spring boot 5中)使用外部API.当API响应状态代码为200时,我能够很好地获取数据,但是当API返回错误时,我无法从API检索错误消息. Spring webclient错误处理程序始终将消息显示为
ClientResponse有错误的状态代码:500内部服务器错误,但是当我使用PostMan时,API会返回状态代码为500的JSON响应.
{
"error": {
"statusCode": 500,"name": "Error","message":"Failed to add object with ID:900 as the object exists","stack":"some long message"
}
}
我使用WebClient的请求如下
webClient.getWebClient()
.post()
.uri("/api/Card")
.body(BodyInserters.fromObject(cardObject))
.retrieve()
.bodyToMono(String.class)
.doOnSuccess( args -> {
System.out.println(args.toString());
})
.doOnError( e ->{
e.printStackTrace();
System.out.println("Some Error Happend :"+e);
});
最佳答案
查看.onErrorMap(),它为您提供了查看的异常.因为您可能还需要查看exchange()的body(),所以不要使用retrieve,而是
原文链接:https://www.f2er.com/spring/431608.html.exchange().flatMap((ClientResponse) response -> ....);