程序包org.springframework.boot不存在的问题解决
作者:唯♧
本文主要介绍了程序包org.springframework.boot不存在的问题解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
程序包org.springframework.boot不存在
1、检查依赖
首先检查pom文件判断依赖是否存在
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <version>2.4.5</version> </dependency>
2、缓存问题
有时候构建工具会缓存依赖的 Jar 包,如果缓存的 Jar 包已经损坏或过期,就可能导致无法正确加载。尝试清理构建工具的缓存,然后重新构建项目,以便重新下载依赖。
3、解决方式-运行时勾选
原因分析
1、项目的.iml文件异常删除重即可
删除前的.iml文件
<?xml version="1.0" encoding="UTF-8"?> <module version="4"> <component name="CheckStyle-IDEA-Module" serialisationVersion="2"> <option name="activeLocationsIds" /> </component> <component name="NewModuleRootManager"> <content url="file://$MODULE_DIR$/nacos_config_order"> <sourceFolder url="file://$MODULE_DIR$/nacos_config_order/src" isTestSource="false" /> <sourceFolder url="file://$MODULE_DIR$/nacos_config_order/src/main/resources" type="java-resource" /> <sourceFolder url="file://$MODULE_DIR$/nacos_config_order/target/generated-sources" isTestSource="false" /> </content> </component> </module>
重新生成后的
<?xml version="1.0" encoding="UTF-8"?> <module version="4"> <component name="CheckStyle-IDEA-Module" serialisationVersion="2"> <option name="activeLocationsIds" /> </component> </module>
到此这篇关于程序包org.springframework.boot不存在的问题解决的文章就介绍到这了,更多相关程序包org.springframework.boot不存在内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
您可能感兴趣的文章:
- 解决IDEA报错Caused by: org.springframework.boot.web.server.WebServerException: Unable to start embedded
- java:无法访问org.springframework.boot.SpringApplication问题
- Java报错:Error:java: 程序包org.springframework.boot不存在解决办法
- Plugin ‘org.springframework.boot:spring-boot-maven-plugin:‘ not found的解决方案(亲测可用)
- 如何解决Could not transfer artifact org.springframework.boot问题