当前位置: 首页 > 工具软件 > logging-web > 使用案例 >

【解决】Cannot resolve org.springframework.boot:spring-boot-starter-web:unknown

苏昂雄
2023-12-01

问题

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>
 类似资料: