美文网首页
Could not autowire. No beans of

Could not autowire. No beans of

作者: 一滴矿泉水 | 来源:发表于2023-09-14 16:39 被阅读0次

    一 、 场景

    IDEA写了个接口,在Service服务实现类ServiceImpl中注入Mapper时,报错:Could not autowire. No beans of 'SysMenuMapper' type found ,但项目可以正常运行,结果也正确。

    二、问题原因

    原因在于DAO接口添加的@Mapper并不是Spring的注解,而是ibatis的注解,Spring auto scan配置找不到对应的bean,并没有声明这个DAO接口作为Spring的Bean,因此Spring不能进行管理,导致注入报错。

    三、解决办法

    方法一

    只需在DAO接口加上@Component 或者 @Repository(@Repository实际上也包含了@Component注解)注解声明为Spring的Bean即可。

    效果

    方法二

    将@Autowrited改为@Autowrited(required = false)

    效果


    文章持续更新中、希望对各位有所帮助、有问题可留言 大家共同学习 !

    相关文章

      网友评论

          本文标题:Could not autowire. No beans of

          本文链接:https://www.haomeiwen.com/subject/ptumvdtx.html