微服务组件之Hystrix豪猪简介和简单学习-2021-8-20

Hystrix

豪猪,在微服务系统中是一款提供保护机制的组件

当服务请求太多的时候,每个依赖关系在某些时候将不可避免地失败。Hystrix可以提供服务熔断和服务降级来解决这类问题,我们称之为熔断器,返回一个符合预期的备选响应(FallBack)。

1、服务雪崩

多个微服务之间互相调用的时候,类似于一个金字塔,当某个微服务发生异常的时候,多个请求会发生阻塞,导致服务器资源耗尽,其他所有微服务都变得不可用。

微服务的重点是去中心化。

2、服务熔断
  1. 导入pom依赖:
		<!-- hystrix -->
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
		</dependency>
  1. 写入yml文件:
eureka:
  instance:
    instance-id: MySpringCloud-user-service-9091-hystrix
    prefer-ip-address: true
  1. 在启动类中加注解:
    @EnableCircuitBreaker//开启对熔断机制的支持
@SpringBootApplication
@MapperScan("com.zpark.sc.mapper")
@EnableEurekaClient
@EnableCircuitBreaker//开启对熔断机制的支持
public class UserApplication {
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		SpringApplication.run(UserApplication.class, args);
	}
}
  1. 编写控制类:
@RestController
@RequestMapping("/user")
public class UserController {	
	@Autowired
	UserService userService;
	@GetMapping("/{id}")
	@HystrixCommand(fallbackMethod = "processHystrix_Get")
	public User queryById(@PathVariable("id")Long id) {		
		User user = userService.queryById(id);
		if (user == null) {
			//下面叫抛出异常,上面叫声明异常
			throw new RuntimeException("该ID没有对应
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值