SpringCloud 中Hystrix的基本使用

导入依赖

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
    <version>2.2.7.RELEASE</version>
</dependency>

RestTemplate整合

  1. 启动类添加注解@EnableCircuitBreaker

    @SpringBootApplication
    //旧版本
    //@EnableCircuitBreaker
    //新版本
    @EnableHystrix
    public class ClientdemoApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(ClientdemoApplication.class, args);
        }
    
    }
    
  2. 使用注解引进调用失败执行的方法

    @HystrixCommand(fallbackMethod = "service5Fail")
    public Object service5() {
        String url2 = "http://eurekaserve/shello";
        ResponseEntity<String> forEntity = restTemplate.getForEntity(url2, String.class);
        System.out.println(forEntity.getBody());
        return "service5: " + forEntity.getBody();
    }
    
    public Object service5Fail(){
        return "service5Fail";
    }
    

Feign整合

开启Hystrix

//旧版本
feign.hystrix.enabled=true
//新版本
feign.circuitbreaker.enabled=true

方式一
实现API接口,重写方法

@Component
public class FeignTestImpl implements FeignTest {

    @Override
    public String shello() {
        return "shello is failed";
    }
}

注解配置fallback

@FeignClient(name = "eurekaserve",fallback = FeignTestImpl.class)
public interface FeignTest {

    @GetMapping(path = "/shello")
    String shello();

}

方式二
实现FallbackFactory接口,重写方法create(Throwable cause)

@Component
public class MyError implements FallbackFactory<FeignTest> {
    
    @Override
    public FeignTest create(Throwable cause) {
        return new FeignTest() {

            @Override
            public String shello() {
                if (cause instanceof Exception)
                    return "MyException";
                else
                    return "MyError";
            }

        };
    }
}

注解配置fallback

@FeignClient(name = "eurekaserve" ,fallbackFactory = MyError.class)
public interface FeignTest {

    @GetMapping(path = "/shello")
    String shello();

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值