【Java】Springboot 低版本(1.4.7)新建项目问题

已解决!主要是因为网络问题,各种包总是下载不完整。
解决办法:可将 maven -> conf -> setting.xml 设置一个国内镜像,比如阿里,代码如下:(注意地址以后可能有变,使用时请查正)
`<mirror>

  <id>alimaven</id>

<name>aliyun maven</name>

<url>

http://maven.aliyun.com/nexus/content/groups/public/</url>

<mirrorOf>central</mirrorOf>

</mirror>`

打扰各位了,新建SpringBoot项目提示有误,没查出到底是哪里的问题,如下提示:

新建项目前,将maven 3.1.9 换成了 3.5.4 了。

将maven setting.xml 文件中的 aliyun 镜像删除,则一直在updating 卡住,难道只是网络不通的问题吗

【Java】Springboot 低版本(1.4.7)新建项目问题

【Java】Springboot 低版本(1.4.7)新建项目问题


`Failure to transfer org.apache.maven.doxia:doxia:pom:1.1 from https://
repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be
reattempted until the update interval of central has elapsed or updates are forced. Original
error: Could not transfer artifact org.apache.maven.doxia:doxia:pom:1.1 from/to central
(https //repo.maven.apache.org/maven2): The operation was cancelled.`

回答

试下把本地仓库里的lastUpdated文件都删了,再重新执行maven update

以上是 【Java】Springboot 低版本(1.4.7)新建项目问题 的全部内容, 来源链接: utcz.com/a/89987.html

回到顶部