@Autowired注解注入失败,提示could not autowire的解决办法

 autowire异常主要由三个情况发生的

像上面的情况是BrandDao没有注入,


1。你的BrandServiceImpl必须以@Service或@Component注解才行。

 

2。自动写入的时候把接口写成实现类了
@Autowired
private BrandServiceImpl      brandServiceImpl;
应该是
@Autowired
private BrandService    brandService ;

 

3.在BrandDao 类上加上@Repository注解

posted on 2020-07-27 16:55  云淡风轻博客  阅读(13420)  评论(0编辑  收藏  举报