8. 带 Hystrix 的断路器
应用程序可以通过在项目pom.xml中包含此Starters来使用 Spring Cloud Netflix 项目提供的 Hystrix 断路器:spring-cloud-starter-hystrix
.Hystrix 不依赖于 Netflix Discovery Client。这@EnableHystrix
annotation 应该放在一个 configuration 类(通常是 main class)上。然后,可以使用@HystrixCommand
由断路器保护。有关更多详细信息,请参阅文档。