SSM框架出现 'xxxServiceImpl': Unsatisfied dependency expressed through field 'xxxMapper'

出现这类错误,一般是spring自动创建bean失败,需要从以下几个方面检查:
( 基于注解)

  1. 注解扫描器 是否开启
    作用是扫描com.dwork下面所有的注解
    则是过滤Controller注解(因为我是分了两个xml写 springmvc里面扫描了controller层 这里无需再扫描)
    在这里插入图片描述

(springmvc.xml配置文件中 :mvc:annotation-driven 以及扫描controller目录)
在这里插入图片描述
2. 控制层@Controller 注解是否写上 Service的实现层 @Serivce 注解是否写上
Dao/Mapper 的@Repository注解是否写上

3.web.xml配置检查
SSM框架出现 'xxxServiceImpl': Unsatisfied dependency expressed through field 'xxxMapper'_第1张图片
4.xxxController Unsatisfied dependency expressed through field ‘xxxServiceImpl’ 以上方法通用,都是一类 错误,我的错误是出现在Mapper (dao) 层,所以mybatis这边配置需要检查 :
因为我是自己敲的配置文件,没有ctrl c ,ctrl v,一时粗心,原来是引入SqlMapConfig.xml文件前面没加classpath: (在src目录下 classpath:加上xml文件名即可) 导致识别不了 ,重点!!! 所有的配置文件引入 都需要注意路径位置!!! 容易疏忽
SSM框架出现 'xxxServiceImpl': Unsatisfied dependency expressed through field 'xxxMapper'_第2张图片

你可能感兴趣的:(java,ssm,mybatis)