Warning: Class ‘com.xxx.xxx’ not found in module ‘xxxx’

场景

今天开发springBoot项目的时候,启动类上面有红色叉叉,说Warning: Class ‘com.xxx.xxx’ not found in module ‘xxxx’,查阅资料得知删除“.iml”文件,从新导入pom文件,可以解决该问题

解决

打开 File ——> settings ——> Editor ——> File Types,在右侧 Ignore Files and Folders下删除掉 “*.iml” ,再点击 Apply ——> OK 退出,等待从新导入索引完成,发现之前报红的那些启动类,此时都已正常。 如果无法自动导入索引,可以刷新一下maven项目。

你可能感兴趣的:(开发Bug,maven,java,spring,boot)