Could not find artifact g.springframework.boot:spring-boot-starter-web:pom:3.1.3 in alimaven
时间: 2023-12-29 20:26:42 浏览: 71
spring-boot-starter-web-1.3.3.RELEASE.jar
根据提供的引用内容,你遇到了一个找不到依赖的问题。解决这个问题的方法是将`spring-boot-starter-parent`的版本降级到`2.2.1`。这样做可以解决找不到`spring-boot-starter-web`的问题。
以下是解决方案的步骤:
1. 打开你的项目的`pom.xml`文件。
2. 找到`spring-boot-starter-parent`的依赖项。
3. 将其版本号修改为`2.2.1`。
4. 保存并重新构建你的项目。
这样做应该可以解决找不到`spring-boot-starter-web`的问题。
阅读全文