and since my project is a multi-module project, I also tried adding an empty @Component annotation and also a @Component with different values, once “com.company.a.b”, once “com.company.a.b.c.impl” but SonarLint still displays the warning.
Please note that the application is started as expected.
Thanks for reporting the issue. As you noted, there are known limitations to that rule and the Java analyzer but if you are seeing the issue in SonarLint, then there might be something else going on.
Just to clarify: are you running SonarLint in connected mode? (assuming connected to Sonarlcoud here)
Hi @cbertoldi_p,
In your first message, you mentioned setting up a @ComponentScan with and without package values to mitigate the issue but that it did not work.
Just so that we can reproduce the issue, can you confirm that your setup looks something like this:
module1
+ com.company.a
- MyService.java <-- annotated with @Service
- SomeEmptyClass.java <-- annotated with @ComponentScan
module2
+ com.company.a.b.c.impl
- MyApplication.java <-- annotated with @SpringBootApplication
And yet an issue is still raised on MyService.java?
I am not sure I understand: Did you try the solution from the other thread of adding the @ComponentScan annotation to some class in the module that is not covered?
You mention the @Component annotation but I am not sure this is supposed to help here. Did you mean @ComponentScan?