gpt4 book ai didi

spring - 无法在STS中创建spring-mvc项目

转载 作者:行者123 更新时间:2023-12-02 09:53:58 26 4
gpt4 key购买 nike

我正在尝试创建一个 spring mvc 项目。我正在创建一个 Maven 项目,然后选择原型(prototype)为

GroupId : co.ntier
ArtifactId : spring-mvc-archetype
Version: 1.0.2

我收到此错误:

Unable to create project from archetype [co.ntier:spring-mvc-archetype:1.0.2 -> http://maven-repository.com/artifact/co.ntier/spring-mvc-archetype/1.0.2]
The defined artifact is not an archetype

最佳答案

尝试清理您的 .m2\repository\文件夹。不要忘记在 settings.xml 中设置代理。 settings.xml 是手动创建的,因此您需要自己创建并设置代理。以下是在 settings.xml 中设置代理的示例模板

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<proxies>
<proxy>
<active>true</active>
<protocol>http</protocol>
<host> --your proxy here-- </host>
<port> --your port no here-- </port>
</proxy>
</proxies>
</settings>

当您创建新的 Maven 项目并添加新的原型(prototype)时,请改用此存储库 URL:http://repo1.maven.org/maven2/

顺便说一句,我正在使用 Eclipse Luna,它在我这边可以正常工作。

关于spring - 无法在STS中创建spring-mvc项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25455032/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com