SpringBoot 报错: Error creating bean with name ‘deptServiceImpl‘: Unsatisfied dependency expressed th

报错:

原因从网上可以得知:

检查自己的Mapper文件有没有加入注解 @Mapper @Repository

SpringBoot 报错: Error creating bean with name ‘deptServiceImpl‘: Unsatisfied dependency expressed th_第1张图片 

 

和自己的deptServiceImpl 加入@Service 中引入的Mapper有没有用@Autowired 如图

SpringBoot 报错: Error creating bean with name ‘deptServiceImpl‘: Unsatisfied dependency expressed th_第2张图片 

 

如果上述都有 我们就去看 是不是我们配置的路径有问题 下图是我的目录结构 和 配置的路径截图

SpringBoot 报错: Error creating bean with name ‘deptServiceImpl‘: Unsatisfied dependency expressed th_第3张图片

 SpringBoot 报错: Error creating bean with name ‘deptServiceImpl‘: Unsatisfied dependency expressed th_第4张图片

到这还没有问题就去看看 我的Mapper.xml文件中的是否和我们的dao层包位置一样

SpringBoot 报错: Error creating bean with name ‘deptServiceImpl‘: Unsatisfied dependency expressed th_第5张图片

 不过我也是排错到这发现自己的 还是错的 我就去看了 发现把下图的东西改以后就好用了

改前:SpringBoot 报错: Error creating bean with name ‘deptServiceImpl‘: Unsatisfied dependency expressed th_第6张图片

 

改后:SpringBoot 报错: Error creating bean with name ‘deptServiceImpl‘: Unsatisfied dependency expressed th_第7张图片

 

 自己的错误就这样 迷迷糊糊!!!

 

 

你可能感兴趣的:(Spring,spring,java)