[SpringCloud] SpringCloud微服务实战 导入hystrix找不到@HystrixCommand问题

tech2024-12-02  9

作者是使用的就老版本的SpringBoot+SpringCloud, 导入的依赖是:

<dependency>     <groupId>org.springframework.cloud</groupId>     <artifactId>spring-cloud-starter-hystrix</artifactId> </dependency>

对于Spring Boot 2.0+Spring Cloud Finchley, 应该使用

<dependency>     <groupId>org.springframework.cloud</groupId>     <artifactId>spring-cloud-starter-netflix-hystrix</artifactId> </dependency>

最新回复(0)