Redundant declaration: @SpringBootApplication already applies given @ComponentScan
时间: 2024-04-26 08:23:11 浏览: 191
Redundant:冗余主机
这是一个警告提示,意思是在Spring Boot应用程序中,@SpringBootApplication注解已经包含了@ComponentScan注解,因此在代码中再次使用@ComponentScan注解会导致重复声明的警告。可以删除重复的@ComponentScan注解,因为@SpringBootApplication已经包含了它。如果您确实需要自定义扫描配置,则可以使用basePackages属性进行指定。
阅读全文