Spring编程常见错误--Spring Core篇-01 |Spring Bean 定义常见错误一、Spring Bean定义常见错误
一、Spring Core篇一.Spring Bean定义常见错误1、隐式扫描不到 Bean :@ComponentScan默认扫描范围从启动类所在包开始,扫描当前包及其子级包下的所有文件。@ComponentScan的使用位置为SpringBoot的启动类上,可以不加,不加的默认位置就是扫描当前包及其子级包下的所有文件。如果需要扫描其他位置的,需要手动去指定,手动指定后,默认的范围就失效了。@ComponentScan("com.testing")public class