12
votes

I am using intellij and all plugins for spring are activated , How to add spring-boot annotated configuration classes to intellij IDE . I am getting following Warning :

Spring Configuration Check Unmapped Spring configuration files found. Please configure/setup Spring facet for modules: exampleApp (13 files)

1

1 Answers

28
votes

It's not specific to spring-boot, it's merely IntelliJ telling you that your Spring configuration classes or XML resources are not being referenced by your project settings. Simply add the Spring facet to your module, then click the add button in the right panel. IntelliJ should find your configuration classes or XML resources and you simply need to select them.

All this does is allow IntelliJ to perform inspections on Spring beans you reference in your classes.

enter image description here