在Spring Cloud中使用了Hystrix 来实现断路器的功能。Hystrix是Netflix开源的微服务框架套件之一,该框架目标在于通过控制那些访问远程系统、服务和第三方库的节点,从而对延迟和故障提供更强大的容错能力。Hystrix具备拥有回退机制和断路器功能的线程和信号隔离,请求缓存和请求打包,以及监控和配置等功能。
以下分别在ribbon以及feign中配置断路器Hystrix
一、feign中配置Hystrix
feign是自带断路器功能的,并且默认打开,如果你要关闭的话,需要加上这个配置:
feign:
hystrix:
enabled: false
以之前创建的消费者 service-consumer-feign为例子配置:
1) 这里只需要在@FeignClient注解上加上fallback就可以了,如下:
package com.sam.service.consumer.feign;
import org.springframework.cloud.netflix.feign.FeignClient;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
/**
* @ClassName: ServiceAFeignClient
* @Description: 服务客户端实现
* @author sam
* @date 2018年8月10日 下午4:00:42
*/
@Component
@FeignClient(value = "service-producer", fallback = ServiceAFeignClientFallback.class) // 这里的name对应调用服务的spring.applicatoin.name
public interface ServiceAFeignClient {
@RequestMapping(value = "/hi")
String hi(@RequestParam("id") String id);
}
2) 同时创建熔断处理类:ServiceAFeignClientFallback
package com.sam.service.consumer.feign;
import org.springframework.stereotype.Component;
/**
* @ClassName: ServiceAFeignClientFallback
* @Description: 熔断回调类
* @author sam
* @date 2018年8月9日 下午5:24:52
*/
@Component
public class ServiceAFeignClientFallback implements ServiceAFeignClient {
@Override
public String hi(String id) {
return "hi, " + id + ", error!";
}
}
配置之后,访问消费者:service-consumer-feign http://localhost:8911/hi?id=123 可以查看信息:
把生产者 service-producer-A等都停止,再刷新访问,看到熔断提示:
二、ribbon中配置Hystrix
以之前创建的消费者 service-consumer-ribbon为例子配置:
1)pom.xml中添加
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-hystrix</artifactId>
</dependency>
2)在启动类ClientApplicationRibbon中添加@EnableHystrix开启hystrix功能,如下:
package com.sam.service.consumer.ribbon;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.cloud.netflix.hystrix.EnableHystrix;
import org.springframework.context.annotation.Bean;
import org.springframework.web.client.RestTemplate;
/**
* @ClassName: ClientApplicationRibbon
* @Description: 消费者服务(使用Ribbon实现)
* @author sam
* @date 2018年8月10日 下午4:01:21
*/
@SpringBootApplication
@EnableDiscoveryClient
@EnableHystrix
public class ClientApplicationRibbon {
public static void main(String[] args) {
SpringApplication.run(ClientApplicationRibbon.class, args);
}
@Bean
@LoadBalanced
RestTemplate restTemplate() {
return new RestTemplate();
}
}
3)Controller中, 使用@HystrixCommand指定回调方法,如下:
package com.sam.service.consumer.ribbon;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;
import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand;
/**
* @ClassName: TestController
* @Description: Ribbon+RestTemplate方式
* @author sam
* @date 2018年8月9日 下午4:17:10
*/
@RestController
public class TestController {
@Autowired
RestTemplate restTemplate;
@RequestMapping("/hi")
@HystrixCommand(fallbackMethod = "hiFallback")
public String hi(@RequestParam String id) {
return restTemplate.getForObject("http://service-producer/hi?id=" + id, String.class);
}
// 断路器回调方法
public String hiFallback(String id) {
return "hi, " + id + ", error!";
}
}
以上配置完成后,停止生产者,亦可以实现和fergn一样的熔断器效果!