问题

Cannot resolve org.springframework.boot:spring-boot-starter-web:unknown

原因

主要由于Spring Boot的版本未选择好

解决方法

在Spring下面配置version号。如果用的是阿里云下载的,最好不用太高的版本,否则还是找不到

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <!-- 增加版本号 -->
            <version> 2.3.3.RELEASE</version>
        </dependency>