引发autowire注入异常的三种原因

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

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


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

 

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

 

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

posted @ 2017-09-01 15:07  晓容晓枫  阅读(996)  评论(0)    收藏  举报