Spring Boot如何忽略HttpStatus异常

Spring Boot如何忽略HttpStatus异常,第1张

Spring Boot如何忽略HttpStatus异常

Spring

RestTemplate
使用
ResponseErrorHandler
来处理响应中的错误。此接口提供了一种确定响应是否有错误(
ResponseErrorHandler#hasError(ClientHttpResponse)
)以及如何处理该错误(
ResponseErrorHandler#handleError(ClientHttpResponse)
)的方式。

您可以设置

RestTemplate
ResponseErrorHandler
RestTemplate#setErrorHandler(ResponseErrorHandler)
它的javadoc状态

默认情况下,

RestTemplate
使用
DefaultResponseErrorHandler

此默认实现

[…]检查以下代码上的状态代码

ClientHttpResponse
:任何带有系列
HttpStatus.Series.CLIENT_ERROR
或被
HttpStatus.Series.SERVER_ERROR
认为是错误的代码。可以通过重写
hasError(HttpStatus)
方法来更改此行为。

如果发生错误,它将引发您所看到的异常。

如果您想更改此行为,则可以提供自己的

ResponseErrorHandler
实现(也许通过重写
DefaultResponseErrorHandler
),该实现不会将4xx视为错误或不会引发异常。

例如

restTemplate.setErrorHandler(new ResponseErrorHandler() {    @Override    public boolean hasError(ClientHttpResponse response) throws IOException {        return false; // or whatever you consider an error    }    @Override    public void handleError(ClientHttpResponse response) throws IOException {        // do nothing, or something    }});

然后,您可以检查

ResponseEntity
返回的状态码
getForEntity
并自行处理。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5641543.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存