自从我升级到Intellij IDEA 13后,我在启动时就收到了一条警告消息:
Spring Configuration Check
Unmapped Spring configuration files found.
Please configure/setup Spring facet for modules: ...
当我单击链接以确定哪些文件未映射时,我看到它们都在bin
目录下。
有没有办法告诉IntelliJ不要警告我bin
下的文件
发布于 2014-03-12 20:22:43
应该从搜索中排除bin文件夹,因为它包含编译输出。
在工程视图中找到bin文件夹,单击右键,进入,将目录标记为,单击excluded。
发布于 2014-07-03 04:25:15
如果您只想禁用通知,请执行以下操作:
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
发布于 2015-03-18 16:31:50
Cory Klein提供了有效解决方案,但路径已更改为
File -> Settings (Ctrl + Alt + S) -> Appearance & Behavior -> Notifications -> Spring Configuration Check > No popup
https://stackoverflow.com/questions/22351275
复制相似问题