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

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

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


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

 

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

 

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

上一篇:spring源码分析(五)@Autowire注入补充,@Resource源码分析


下一篇:一、REST or RPC ?