引入zuul的pom时报错

来源:3-4 服务网关模块的开发

慕瓜4390957

2020-05-24 10:49

Failed to read artifact descriptor for com.netflix.hystrix:hystrix-serialization:jar:1.5.18

pom.xml报错,显示找不到这个依赖

<!-- https://mvnrepository.com/artifact/com.netflix.hystrix/hystrix-serialization -->
<dependency>
    <groupId>com.netflix.hystrix</groupId>
    <artifactId>hystrix-serialization</artifactId>
    <version>1.5.18</version>
</dependency>

自己尝试解决加入这个依赖,但是无效。

写回答 关注

1回答

  • LNG168
    2020-09-09 11:29:25
    1. 重新Reimport All Maven Projects。

    2. 删除Maven依赖,再重新导入。

    3. 重启IDEA,并清除缓存。

    4. 删除仓库的包,重新下载。

    5. 检查一下maven的镜像仓库

        如果还不行,在maven后面添加

    <repositories>

            <repository>

                <id>spring-milestones</id>

                <name>Spring Milestones</name>

                <url>https://repo.spring.io/milestone</url>

                <snapshots>

                    <enabled>false</enabled>

                </snapshots>

            </repository>

        </repositories>


4小时使用SpringCloud框架实现慕课网主页后端开发

使用 SpringCloud 实现微服务架构,完成慕课网主页后端开发。

3831 学习 · 53 问题

查看课程

相似问题