报错:Could not autowire. No beans of ‘xxx‘ type found.

报错:Could not autowire. No beans of ‘xxx’ type found.

Action: Consider defining a bean of type 'xxx' in your configuration.

报错:Could not autowire. No beans of ‘xxx‘ type found._第1张图片
原因分析:
编写了一个接口,根据英文的提示是在配置中找不到一个指定自动注入类型的bean,这个bean没有被spring识别到,最后找到在service的实现层中没有加上@Service注解

解决方法:
在service的实现层中加上@Service注解就行

你可能感兴趣的:(开发语言,java,spring,spring,boot)