Maven项目启动时出现bean注入失败的情况:Error creating bean with name 'XXX': Injection of autowired dependencies

今天联系一下taotao商城项目的时候,竟然出现了注入失败.Error creating bean with name 'itemServiceImpl': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.taotao.mapper.TbItemMapper 然后从网上找各种解决方案,但是每一个人的错都不一样,我得项目结构是这样的,
目录结构Maven项目启动时出现bean注入失败的情况:Error creating bean with name 'XXX': Injection of autowired dependencies_第1张图片
我看了applicationContext-dao.xml里面好像没有什么问题.再看applicationContext-service.xml,发现也是对的,因为我得项目拆的比较碎,所以扫描到com.taotao.service这里就可以.接着看applicationContext-trans.xml,这是事务的配置,注入都没注入进去,事务更不可能.最后看SpringMVC.xml,扫描到com.taotao.controller也没问题啊.电脑坏了?硬着头皮看日志吧,忽然发现com.taotao.mapper.TbItemMapper,然后我就返回去applicationContext-dao.xml,看了看,反复的看了看,好像是缺点东西,缺什么呢?**我的天!**缺少扫描mapper的配置!
,真是瞎,第一遍看还觉得没有问题.
问题解决
所以敲代码一定要仔细啊

你可能感兴趣的:(笔记)