自从我升级到Intellij IDEA 13后,我在启动时收到了警告信息:
Spring Configuration Check
Unmapped Spring configuration files found.
Please configure/setup Spring facet for modules: ...
当我点击链接以确定哪些文件未映射时,我发现它们都位于bin
目录下。
有没有办法告诉IntelliJ不要警告bin
下面的文件?
答案 0 :(得分:21)
如果您只想禁用通知,请执行以下操作:
IntelliJ > Preferences > Notifications > Spring Configuration Check > No popup
或在IntelliJ IDEA 14中
IntelliJ > Preferences > Appearance & Behavior > Notifications > Spring Configuration Check > No popup
在IntelliJ IDEA 15中,这再次发生了变化:
IntelliJ > Preferences > Editor > Inspections > Deselect Spring checkbox
答案 1 :(得分:8)
bin 文件夹应该从搜索中排除,因为它包含编译输出。
在项目视图中找到 bin 文件夹,右键单击它,转到将目录标记为,点击排除
答案 2 :(得分:1)
Cory Klein提供工作解决方案,但路径已更改为
File -> Settings (Ctrl + Alt + S) -> Appearance & Behavior -> Notifications -> Spring Configuration Check > No popup