mybatis整合ss的时候,无法autowire使用mapper的自动注入,找不到bean:NoSuchBeanDefinitionException

Posted 奔跑吧_兄弟!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis整合ss的时候,无法autowire使用mapper的自动注入,找不到bean:NoSuchBeanDefinitionException相关的知识,希望对你有一定的参考价值。

  1. org.springframework.beans.factory.BeanCreationException:
  2. Error creating bean with name \'userDaoImpl\': Injection of autowired dependencies failed;
  3. nested exception is org.springframework.beans.factory.BeanCreationException:
  4. Could not autowire field: private com.dao.UserMapper com.service.UserDaoImpl.userMapper;
  5. nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.dao.UserMapper] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}


原因,在spring的配置文件中扫不到mapper下的dao文件们,可能就是路径写错了。


我的原因是:路径多了一个classpath:


所以把classpath去掉就好了。




以上是关于mybatis整合ss的时候,无法autowire使用mapper的自动注入,找不到bean:NoSuchBeanDefinitionException的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot整合mybatis时,使用Autowired注入RedisTemplate时,报错:因有多个bean不知实现哪一个的问题

使用IDEA工具整合mybatis时使用@Resource和@Autowired自动注解bean时会显示红色问题的解决办法

spring整合mybatis时运行测试代码报错Injection of autowired dependencies failed,请各位大神帮忙看看

IDEA mybatis 在service无法使用@Autowired , could not autowire

Spring Boot @Autowired无法注入类 Consider defining a bean of type

Spring整合Mybatis底层原理