spring-cloud-starter-netflix-hystrix 报红无法引入

img

如图,pom文件中一旦引入spring-cloud-starter-netflix-hystrix就会报红


    <dependencies>
        <!--web起步依赖-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <!--eureka客户端-->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        </dependency>

        <!--熔断器-->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
        </dependency>
    </dependencies>

尝试加了版本号2.2.2.RELEASE或2.2.1.RELEASE也无法解决……

img

检查了一下似乎也不是依赖冲突

img

请问还能是什么问题造成的呢?

idea中有个插件、maven 依赖助手、你这种就有可能是你的网络和依赖地址网络不通