1.Field boy in com.huhu.SpringDemo.HelloController required a bean of type 'com.huhu.SpringBean.Boy' that could not be found. 解决办法: 1.将这个类放到与Spring boot的启动类需要放在需要扫描类的上层目录,这样才能扫描到同级或者子类需要注册的类. 2.在你使用的Controller上面加上@ComponentScan(basePackages="com.xx&q…