Failed to read artifact descriptor for org.mybatis:mybatis:jar:3.5.4

解决:
检查私服是否可以连接,私服连接不上,在项目的pom.xml配置阿里的私服repository。

    <repositories>
        <repository>
            <id>public</id>
            <name>aliyun</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
            <releases>
                <enabled>true</enabled>
            </releases>
        </repository>
    </repositories>

如果maven中配置了私服,私服连接不上时,下载不了jar。 可以直接在maven的setting.xml中修改私服,也可以在项目中指定另外的私服(能连接私服的情况下,项目不用动。连不上私服,在单独的项目使用别的私服,两种情况隔离开)

环境:
1.idea、maven
2.在maven的setting.xml中配置了私服

依赖报错:
在这里插入图片描述
Failed to read artifact descriptor for org.mybatis:mybatis:jar:3.5.4_第1张图片

参考:
[1]maven之Nexus的配置【setting.xml里配置】(六)
[2]Maven入门:使用Nexus搭建Maven私服及上传下载jar包

你可能感兴趣的:(异常)