Project ‘org.springframework.boot:spring-boot-starter-parent:1.5.7.RELEASE‘ not found

简介: Project ‘org.springframework.boot:spring-boot-starter-parent:1.5.7.RELEASE‘ not found

报错

报错如下:

Project 'org.springframework.boot:spring-boot-starter-parent:1.5.7.RELEASE' not found

错误原因

大概率是IDEA运行时会有缓存,我们只需要清除缓存即可。

解决方案

点击File,点击Invalidate Caches,等待重启即可!

0a33b45d82d04a22b97e8110ea7561b4.png

文章简短,希望对大家有帮助!

相关文章
|
6月前
|
JSON 前端开发 Java
解决Spring MVC中No converter found for return value of type异常
在Spring MVC开发中遇到`No converter found for return value of type`异常,通常是因缺少消息转换器、返回值类型不支持或转换器优先级配置错误。解决方案包括:1) 添加对应的消息转换器,如`MappingJackson2HttpMessageConverter`;2) 自定义消息转换器并实现`HttpMessageConverter`接口,设置优先级;3) 修改返回值类型为如`ResponseEntity`的合适类型。通过这些方法可确保返回值正确转换为响应内容。
511 1
|
2月前
|
Java API 开发者
【已解决】Spring Cloud Feign 上传文件,提示:the request was rejected because no multipart boundary was found的问题
【已解决】Spring Cloud Feign 上传文件,提示:the request was rejected because no multipart boundary was found的问题
320 0
|
3月前
|
Java Spring
【Azure Spring Cloud】Spring Cloud Azure 4.0 调用Key Vault遇见认证错误 AADSTS90002: Tenant not found.
【Azure Spring Cloud】Spring Cloud Azure 4.0 调用Key Vault遇见认证错误 AADSTS90002: Tenant not found.
|
5月前
|
IDE Java Maven
Spring Boot启动失败问题:hile scanning for the next token found character '@'
Spring Boot启动失败问题:hile scanning for the next token found character '@'
226 0
|
6月前
|
Java Maven 开发工具
Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:2.1.3.RELEASE:repac
Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:2.1.3.RELEASE:repac
46 0
|
12月前
|
Java Maven Spring
org.springframework.boot:spring-boot-starter-parent’ not found
org.springframework.boot:spring-boot-starter-parent’ not found
279 0
|
Java Spring
Java报错Project ‘org.springframework.boot:spring-boot-starter-parent:2.x.0.RELEASE
Java报错Project ‘org.springframework.boot:spring-boot-starter-parent:2.x.0.RELEASE
116 0
|
缓存
project ‘org.springframework.boot:spring-boot-starter-parent:2.1.4.RELEASE‘ not found
project ‘org.springframework.boot:spring-boot-starter-parent:2.1.4.RELEASE‘ not found
172 0
|
Java Spring
Spring 定时任务报错:Cron expression must consist of 6 fields (found 5 in “0 * * * *“)
Spring定时任务-cron只能包含6个字段,即使不支持年份
1364 0
|
2月前
|
SQL 监控 druid
springboot-druid数据源的配置方式及配置后台监控-自定义和导入stater(推荐-简单方便使用)两种方式配置druid数据源
这篇文章介绍了如何在Spring Boot项目中配置和监控Druid数据源,包括自定义配置和使用Spring Boot Starter两种方法。