Could not find artifact org.springframework.boot:spring-boot-starter-parent:pom:2.3.9.RCELEASE in alimaven (http://maven.aliyun.com/nexus/content/groups/public/)
时间: 2023-08-29 22:06:51 浏览: 150
搭建springboot项目的 pom.xml配置,只需要创建maven项目把pom替换即可
5星 · 资源好评率100%
这个问题可能是由于 Maven 依赖库中没有找到 `spring-boot-starter-parent` 的版本 `2.3.9.RCELEASE` 导致的。你可以尝试更新 Maven 依赖库,或者手动添加 `spring-boot-starter-parent` 的版本 `2.3.9.RELEASE` 到你的 Maven 依赖中。
你可以在 `pom.xml` 文件中添加以下代码:
```xml
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.9.RELEASE</version>
</parent>
```
然后运行 `mvn clean install` 命令重新构建你的项目。如果还有其他问题,可以提供更多信息,我会尽力帮助你。
阅读全文