首页 > 其他分享> > Error creating bean with name 'bookController': Injection of resource dependencies failed;
Error creating bean with name 'bookController': Injection of resource dependencies failed;
作者:互联网
报错:
点击查看代码
Error creating bean with name 'bookController': Injection of resource dependencies failed;
nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'bookServiceImpl': Unsatisfied dependency expressed through field 'baseMapper';
nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.mhy.mapper.BookMapper' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
原因:
- 创建名为“bookController”的bean时出错:资源依赖项注入失败
- 嵌套的异常是org.springframework.beans.factory.UnsatisfiedDependencyException:创建名为'bookServiceImpl'的bean时出错:通过字段'baseMapper'表示不满足的依赖;
- 嵌套的异常是org.springframework.beans.factory.NoSuchBeanDefinitionException:没有符合条件的com.mhy.mapper类型的bean。 BookMapper'可用:预计至少有一个bean符合自动装配候选。 依赖注释:{@org.springframework.beans.factory.annotation.Autowired(要求= true)}
解决步骤:
1. 检查 controller
发现没有问题,注解也没有问题。
2. 检查 mapper
也没有问题
3. 检查 service
service 没有问题
然后在我实在想不到还有什么问题,就去百度。找到的解决步骤大都是让我去检查我上面提到的三个地方
4. @MapperScan("")
其它地方都没找到问题,盯着报错的第二点,想了很久。记得好像还有个@MapperScan的注解,试着在启动类上添加了这个注解。没想到问题得到了解决。
然后运行了一下,问题果真没了。
标签:name,factory,springframework,bean,beans,Error,org 来源: https://www.cnblogs.com/dsy665412/p/16343387.html