@Repository 注解引发的异常: Injection of autowired dependencies failed; nested exception is org.springframe

Posted 从零开始

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@Repository 注解引发的异常: Injection of autowired dependencies failed; nested exception is org.springframe相关的知识,希望对你有一定的参考价值。

手头的项目使用spring mvc+ mybatis框架开发,今天调试时遇到奇怪的问题, biz层的ManagerImpl.java 一直报错:

   Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field。。。。

逐一检查了Dao层、biz层、service层的文件,没有发现异常, 经过各种check,终于发现原来是没有MapperImpl文件中没有加@Repository ,因此一直提示找不到对应的bean。至此问题解决。 

  @Repository注解用于将数据访问层 (DAO 层 ) 的类标识为 Spring Bean,代码如下:

        

@Repository
public class UserMapperImpl extends RecAbstractBaseWithBLOBsDAO<User,UserCriteria,UserMapper> implements UserMapper {

 同时在xml文件中启动dao扫描功能,配置代码如下:

 

<context:component-scan base-package="com.search.test" />
    <!-- 启动Spring MVC的注解功能,完成请求和注解POJO的映射 -->

  

  

 

  

 

  

以上是关于@Repository 注解引发的异常: Injection of autowired dependencies failed; nested exception is org.springframe的主要内容,如果未能解决你的问题,请参考以下文章

为啥在启动 REST 服务时添加注解 FormDataParam 会引发异常?

@Component, @Service, @Controller, @Repository区别

Abp vNext 自定义 Ef Core 仓储引发异常

@Component, @Repository, @Service的区别

@Component, @Repository, @Service的区别

常用注解