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

今天在我的Spring Boot项目中新加入一个module,然后写了一个Spring Boot的启动类,结果IDEA提示Cannot access org.springframework.context.ConfigurableApplicationContext。

然后我尝试了使用网上推荐的mvn package或者mvn dependency:purge-local-repository命令清除缓存或者重启IDEA都无效,最后找到一个解决方法,就是需要删除导入项目自动生成的xxx.iml ,然后我重新导入一下module就ok了。网上说刷新一下右侧maven tab也可以。十分感谢~

IDEA运行Springboot报错Cannot access org.springframework.context.ConfigurableApplicationContext_第1张图片
参考:
https://www.cnblogs.com/vwater/p/10369318.html

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