Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

intellij - spring-boot is not being recognised (unmapped Spring-boot annotated configuration classes)

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)

like image 967
user3796703 Avatar asked Jul 11 '14 03:07

user3796703


Video Answer


1 Answers

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

like image 115
Patrick Grimard Avatar answered Sep 29 '22 03:09

Patrick Grimard