1. Hystrix源码解析
1.1. @HystrixCommand原理
- 直接通过Aspect切面来做的
1.2. feign hystrix原理
- 它的本质原理就是对HystrixCommand的动态代理封装
1.2.1. 如何启动Feign hystrix的?
- 在openFeign里,已经封装了Hystrix,当
feign.hystrix.enabled
为true
时生效
Github地址:https://github.com/tzxylao/learn-demo
2023-01-11 14:18:07
feign.hystrix.enabled
为true
时生效Github地址:https://github.com/tzxylao/learn-demo