spring cloud 的断路器(Hystrix) 依赖添加注意点

最新的Hystrix 依赖都是隶属于netfix下,这样@HystrixCommand 和@EnableHystrixDashboard 才能使用


    org.springframework.cloud
    spring-cloud-starter-netflix-hystrix



    org.springframework.boot
    spring-boot-starter-actuator



    org.springframework.cloud
    spring-cloud-starter-netflix-hystrix-dashboard

或者添加下面两个依赖,也可以使用@HystrixCommand


    org.springframework.cloud
    spring-cloud-starter-hystrix

    com.netflix.hystrix
    hystrix-javanica

你可能感兴趣的:(spring cloud 的断路器(Hystrix) 依赖添加注意点)