Sentinel中RestTemplate与Feign分析

发布时间:2021-11-15 17:13:42 作者:iii
来源:亿速云 阅读:209

这篇文章主要讲解了“Sentinel中RestTemplate与Feign分析”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Sentinel中RestTemplate与Feign分析”吧!

Sentinel API

Github : WIKI

Sentinel Annotation

源码:com.alibaba.csp.sentinel.annotation.aspectj.SentinelResourceAspect & com.alibaba.csp.sentinel.annotation.aspectj.AbstractSentinelAspectSupport

RestTemplate 整合Sentinel

使用 @SentinelRestTemplate.

resttemplate.sentinel.enabled可以开关是否启用该注解。(开发阶段很有意义。)

源码:com.springframework.cloud.alibaba.sentinel.custom.SentinelBeanPostProcessor

@Bean
@LoadBalanced
@SentinelRestTemplate
public RestTemplate restTemplate() {
    return new RestTemplate();
}

@Autowired
private RestTemplate restTemplate;
...
Feign整合 Sentinel

配置文件中添加 feign.sentinel.enabled: true来开启

Sentinel中RestTemplate与Feign分析

  1. 编写fallback 类,实现feign client

    @Component
    public class UserCenterFeignClientFallback implements IUserCenterFeignClient {
        @Override
        public UserDTO findById(Long userId) {
            UserDTO userDTO = new UserDTO();
            userDTO.setWxNickname("默认用户");
            return userDTO;
        }
    }
    
    @Slf4j
    @Component
    public class UserCenterFeignClientFallbackFactory implements FallbackFactory<IUserCenterFeignClient> {
    
        @Override
        public IUserCenterFeignClient create(Throwable cause) {
            return new IUserCenterFeignClient() {
                @Override
                public UserDTO findById(Long userId) {
                    log.warn("远程调用被限流/降级,{}", cause);
                    UserDTO userDTO = new UserDTO();
                    userDTO.setWxNickname("默认用户");
                    return userDTO;
                }
            };
        }
    }


  2. 应用fallback class

    /**
     * IUserCenterFeignClient for 定义 user-center feign client
     * fallbackFactory 可以拿到异常信息
     * fallback 无法拿到异常信息
     *
     * @author <a href="mailto:magicianisaac@gmail.com">Isaac.Zhang | 若初</a>
     * @since 2019/7/15
     */
    @FeignClient(name = "user-center",
            // fallback = UserCenterFeignClientFallback.class,
            fallbackFactory = UserCenterFeignClientFallbackFactory.class
    )
    public interface IUserCenterFeignClient {
        @GetMapping(path = "/users/{userId}")
        public UserDTO findById(@PathVariable Long userId);
    }


  3. 启动应用,设置流控规则,结果展示如下

    {
        id: 1,
        ...
        wxNickName: "默认用户"
    }


感谢各位的阅读,以上就是“Sentinel中RestTemplate与Feign分析”的内容了,经过本文的学习后,相信大家对Sentinel中RestTemplate与Feign分析这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是亿速云,小编将为大家推送更多相关知识点的文章,欢迎关注!

推荐阅读:
  1. Redis Sentinel 机制与用法(二)
  2. Sentinel-结合Feign(五)

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

resttemplate sentinel feign

上一篇:如何在CentOS7部署和设置GO

下一篇:CentOS 6.5下ZooKeeper3.4.6集群环境部署及单机部署的示例分析

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》