Redundant declaration: @SpringBootApplication already applies given @ComponentScan
时间: 2024-06-07 13:09:25 浏览: 124
这个警告是因为在Spring Boot应用程序的主类上使用了@ComponentScan注解,并且@SpringBootApplication注解本身也隐含了@ComponentScan注解。因此,使用@ComponentScan注解可能会导致重复扫描组件并产生性能影响。
要消除这个警告,可以将@ComponentScan注解从主类中删除。由@SpringBootApplication注解隐式执行的组件扫描将扫描应用程序的所有包和子包。如果需要,可以使用@SpringBootApplication注解中的额外属性来指定要扫描的特定包。
阅读全文