Could not find artifact org.springframework.boot:spring-boot-starter-web:pom:unknown in alimaven (https://maven.aliyun.com/repository/public)
出现这个问题的原因是pom.xml配置文件中没有配置 parent标签,也就是没有引入spring boot父依赖模块。
添加上以下内容就好了
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.3</version>
<relativePath/>
</parent>