当前位置:   article > 正文

微服务-spring cloud隔离和降级

微服务-spring cloud隔离和降级

概述

Feign整合Sentinel

添加依赖

  1. <!--sentinel依赖-->
  2. <dependency>
  3. <groupId>com.alibaba.cloud</groupId>
  4. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  5. <version>2.2.8.RELEASE</version>
  6. </dependency>

配置文件

FeignClient

  1. @Component//表示为ProductFeign提供降级逻辑
  2. public class ProductFallbackFactory implements FallbackFactory<ProductFeign> {
  3. @Override
  4. public ProductFeign create(Throwable throwable) {
  5. return new ProductFeign() {
  6. @Override
  7. public Product getId(Integer pid) {
  8. System.out.println("getId降级了");
  9. Product product = new Product(0,"降级了",new BigDecimal(0.0),0);
  10. return product;
  11. }
  12. @Override
  13. public String info() {
  14. return "info降级";
  15. }
  16. };
  17. }
  18. }

Sentinel控制台

访问

持久化

Push模式

结构图

启动

把原来的sentinel关掉,启动别人写好的带有持久化的jar包

再重新访问sentinel

在这里设置各种模式就会保存下来。

添加依赖

  1. <dependency>
  2. <groupId>com.alibaba.csp</groupId>
  3. <artifactId>sentinel-datasource-nacos</artifactId>
  4. <version>1.8.1</version>
  5. </dependency>

修改配置文件

访问

product-flow-rules

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/972628
推荐阅读
相关标签
  

闽ICP备14008679号