C/C++教程

IntelliJ Idea解决Could not autowire. No beans of 'xxxx' type found的错误提示

本文主要是介绍IntelliJ Idea解决Could not autowire. No beans of 'xxxx' type found的错误提示,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

在Idea的spring工程里,经常会遇到Could not autowire. No beans of 'xxxx' type found的错误提示。

原因:第一个是IntellijIDEA本身工具的问题。第二个便是我们导入@Service包的时候导入包错误造成的

解决方案:

1)第一个问题解决方案:将 @Autowired 换成 @Resource

2)第二个问题解决方案:导入@Service包:import org.springframework.stereotype.Service;

转载:https://blog.csdn.net/u012453843/article/details/54906905

这篇关于IntelliJ Idea解决Could not autowire. No beans of 'xxxx' type found的错误提示的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!