Intellij用java创建sample struts web项目,然后显示这个错误。

问题描述 投票:0回答:1

下载失败'http:/central.maven.orgmaven2orgapachestrutsstruts2-core2.5.14.1struts2-core-2.5.14.1.jar。':central.maven.org

intellij-idea struts2
1个回答
0
投票

如果你的pom.xml中定义了Maven中央仓库的URL,比如。

    <repository>
        <id>Maven Central</id>
        <name>Maven Central Repository</name>
        <url>http://central.maven.org/maven2</url>
    </repository>

那么就需要更新url,改为

    <repository>
        <id>Maven Central</id>
        <name>Maven Central Repository</name>
        <url>https://repo1.maven.org/maven2</url>
    </repository>

因为 "从2020年1月15日开始,中央存储库将不再支持通过HTTP进行通信"。https:/blog.sonatype.comcentral-repository-moving-to-https。)

© www.soinside.com 2019 - 2024. All rights reserved.