Netflix Feign-通过微服务传播状态和例外

Netflix Feign-通过微服务传播状态和例外,第1张

Netflix Feign-通过微服务传播状态和例外

你可以假装

ErrorDeprer

https://github.com/OpenFeign/feign/wiki/Custom-error-
handling

这是一个例子

public class MyErrorDeprer implements ErrorDeprer {    private final ErrorDeprer defaultErrorDeprer = new Default();    @Override    public Exception depre(String methodKey, Response response) {        if (response.status() >= 400 && response.status() <= 499) { return new MyBadRequestException();        }        return defaultErrorDeprer.depre(methodKey, response);    }}

为了让Spring能够使用ErrorDeprer,必须将其放在ApplicationContext上:

@Beanpublic MyErrorDeprer myErrorDeprer() {  return new MyErrorDeprer();}


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存