Toggle navigation
KANG's BLOG
Home
JAVA
MYSQL
KANG's BLOG
Let's have some fun
Hystrix熔断器的使用
一、Hystrix使用样例: Feign中默认集成了Hystrix,可以通过@FeignClient注解标记资源并使用配置文件或API对资源进行设置,这里介绍Hystrix原生设置和使用方式 maven坐标: <dependency> <groupId>com.netflix.hystrix</groupId> <artifactId>hystrix-core</artifactId> <version>1.5.8</version> </dependency> 原生Hystrix的command定义方式: // 定义一个Command继承HystrixCommand public class HelloWorldHystrixCommand extends HystrixCommand { private final String name; public HelloWorldHystrixCommand(String name) { super(HystrixCommandGroupKey.
Posted by KANG's BLOG Tuesday, March 15, 2022
FEATURED TAGS
database
distributed
http
java
jvm
lock
mq
mysql
nginx
ratelimiter
redis
tomcat
zookeeper
事务
多线程
架构
设计模式