Could not autowire. No beans of ‘XXX‘ type found

Posted 旷世奇才李先生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Could not autowire. No beans of ‘XXX‘ type found相关的知识,希望对你有一定的参考价值。

有志者,事竟成
文章持续更新,可以关注【小奇JAVA面试】第一时间阅读,回复【资料】获取福利,回复【项目】获取项目源码,回复【简历模板】获取简历模板,回复【学习路线图】获取学习路线图。

文章目录


一、Could not autowire. No beans of ‘XXX’ type found

在项目中我们经常遇到某一个类找不到,然后启动报错

这个时候我们需要将下面的内容

    @Autowired()
    private EmployeeService employeeService;

修改为

    @Autowired(required = false)
    private EmployeeService employeeService;

就是添加了 required = false

这样项目就能运行成功了,并且不报错了

二、总结

这里的相关内容还没有整理完毕,文章后面持续更新,建议收藏。

文章中涉及到的命令大家一定要像我一样每个都敲几遍,只有在敲的过程中才能发现自己对命令是否真正的掌握了。

以上是关于Could not autowire. No beans of ‘XXX‘ type found的主要内容,如果未能解决你的问题,请参考以下文章

Java--使用@Autowired报错Could not autowire. No beans of ‘XX‘ type found.

分享知识-快乐自己:intellij Idea报错Could not autowire. No beans of...

Spring Batch 解决 Could not autowire. No beans of ‘StepBuilderFactory‘ type found.

Could not autowire. No beans of ‘xxx” type found(三种方法)

Could not autowire. No beans of 'TbItemMapper' type found. less... (Ctrl+F1) Checks autowir

Could not autowire. No beans of ‘UserMapper‘ type found.