关于报错Consider defining a bean of type 的解决

运行SpringBoot的时候报如下错Consider defining a bean of type 'com.google.code.kaptcha.Producer' in your configuration.

关于报错Consider defining a bean of type 的解决_第1张图片

报错原因为配置中找不到一个指定自动注入类型的bean。

那么我们要从collecter层开始查找,点击service层,看service实现类是否加上@Service或者@Component,检查service实现类是否有implements service。如果这些都没有问题:

我们来看@SpringBootApplication,点过去。可以看到有个@ComponentScan,ComponentScan做的事情就是告诉Spring从哪里找到bean

关于报错Consider defining a bean of type 的解决_第2张图片

那可以直接在@SpringBootApplication加上

@SpringBootApplication
@ComponentScan(basePackages ={"com.google.code" })
public class OfficialSystemApplication {

    public static void main(String[] args) {
        SpringApplication.run(OfficialSystemApplication.class,args);
    }
}

 

你可能感兴趣的:(Spring,Boot)