自己在使用 **`sentinel`** 熔断试练过程中,出现如下图错误:
经过多方排查,终于找到出错原因:
首先,未在 `pom.xml` 文件中添加如下依赖:
```xml
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
```
其次,application.yml 中的写错,正确配置如下
```yaml
feign:
hystrix:
enabled: true
```
做好如上改动后,即可正常运行。