SpringCloud-Hystrix学习笔记

本文介绍了如何在Spring Cloud应用中通过引入Hystrix依赖并配置相关注解,实现服务消费者的熔断和回退机制。在启动类中开启Hystrix和负载均衡,并在请求调用的方法上添加@HystrixCommand注解来设置超时和回退方法。此外,还展示了如何通过设置线程池参数实现方法级别的资源隔离,以避免单个服务故障影响整个系统。通过jstack命令可以观察线程池的运行状态。
摘要由CSDN通过智能技术生成

1.服务消费者pom.xml引入依赖

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

2.启动类开启Hystrix


@SpringBootApplication
@EnableDiscoveryClient
@EnableCircuitBreaker    //开启熔断
//@SpringCloudApplication = 上面三个注解
public class AutoApplication {

    public static void main(String[] args) {
        SpringApplication.run(AutoApplication.class,args);
    }

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

3.请求调用的方法上加上@HystrixCommand注解

@HystrixCommand(
            commandProperties = {
                    @HystrixProperty(name="execution.isolation.thread.timeoutInMilliseconds",value="2000")
            },
            fallbackMethod = "MyFallBack"    //回退方法
    )
    @GetMapping("checkStateTimeOut/{userId}")
    public Integer findByResumeTimeOut(@PathVariable Long userId){
        String url = "http://find/resume/openstate/"+userId;
        System.out.println(url);
        return restTemplate.getForObject(url,Integer.class);
    }

    //回退
    public Integer MyFallBack(Long userId){
        return -1;//兜底数据
    }

4.Hystrix的舱壁模式

默认所有熔断方法公用一个线程池,线程池的大小为10

可以给每个熔断方法设置单独的线程池

@HystrixCommand(
            threadPoolKey = "findByResumeTimeOut",
            threadPoolProperties = {
              @HystrixProperty(name="coreSize",value = "5"),
                    @HystrixProperty(name="maxQueueSize",value="20")
            },
            commandProperties = {
                    @HystrixProperty(name="execution.isolation.thread.timeoutInMilliseconds",value="2000")
            },
            fallbackMethod = "MyFallBack"
    )
    @GetMapping("checkStateTimeOut/{userId}")
    public Integer findByResumeTimeOut(@PathVariable Long userId){
        String url = "http://find/resume/openstate/"+userId;
        System.out.println(url);
        return restTemplate.getForObject(url,Integer.class);
    }

可以用jps命令查看所有java进程

然后用jstack 进程号查看当前进程的线程信息

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值