IDEA运行Springboot报错Cannot access org.springframework.context.ConfigurableApplicationContext

今天在 Spring Boot 项目中再新加入一个 Spring Boot的 module,然后再启动类报错,

Cannot access org.springframework.context.ConfigurableApplicationContext,自己也用了 mvn clean,mvn install,清空 IDEA 缓存,都不行,在网上找到解决办法

IDEA运行Springboot报错Cannot access org.springframework.context.ConfigurableApplicationContext_第1张图片
IDEA运行Springboot报错Cannot access org.springframework.context.ConfigurableApplicationContext_第2张图片
去看了一眼 xx.iml 文件,里面的依赖不全。

  1. 删除对应的xx.iml
  2. 重新导入此项目,为 maven 方式,就成功
  3. 再次去看 xx.iml,依赖就全了

借鉴:
https://blog.csdn.net/cckevincyh/article/details/100806634

你可能感兴趣的:(Spring,Boot)