Feign 自定义 ErrorDecoder (捕获 Feign 服务端异常)
Posted victorbu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Feign 自定义 ErrorDecoder (捕获 Feign 服务端异常)相关的知识,希望对你有一定的参考价值。
问题描述
Feign 客户端捕获不到服务端抛出的异常
问题解决
重新 ErrorDecoder 即可,比如下面例子中在登录鉴权时想使用认证服务器抛出 OAuth2Exception 的异常,代码如下:
import com.fasterxml.jackson.databind.ObjectMapper;
import feign.Response;
import feign.Util;
import feign.codec.ErrorDecoder;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.oauth2.common.exceptions.OAuth2Exception;
import java.io.IOException;
@Configuration
public class FeignErrorDecoder implements ErrorDecoder {
@Override
public Exception decode(String methodKey, Response response) {
try {
String message = Util.toString(response.body().asReader());
ObjectMapper objectMapper = new ObjectMapper();
OAuth2Exception oAuth2Exception = objectMapper.readValue(message, OAuth2Exception.class);
return oAuth2Exception;
} catch (IOException ignored) {
}
return decode(methodKey, response);
}
}
以上是关于Feign 自定义 ErrorDecoder (捕获 Feign 服务端异常)的主要内容,如果未能解决你的问题,请参考以下文章