原文地址:https://blog.csdn.net/u012453843/article/details/54906905程序員
在Idea的spring工程裏,常常會遇到Could not autowire. No beans of 'xxxx' type found的錯誤提示。但程序的編譯和運行都是沒有問題的,這個錯誤提示並不會產生影響。但紅色的錯誤提示在有些有強迫症的程序員眼裏,多多少少有些不太舒服。spring
第一種緣由,spring auto scan配置,在編輯狀況下,沒法找不到對應的bean,因而提示找不到對應bean的錯誤。常見於mybatis的mapper,以下:sql
<!-- mapper scanner configurer --> <bean id="mapperScannerConfig" class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="basePackage" value="com.adu.spring_test.mybatis.dao" /> <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" /> </bean>
針對第一種緣由,解決辦法是:下降Autowired檢測的級別,將Severity的級別由以前的error改爲warning或其它能夠忽略的級別。mybatis
針對第二種緣由,解決方案固然是導入正確的包。首先咱們來看下最容易導入的錯誤包,以下所示:app
importcom.alibaba.dubbo.config.annotation.Service;
正確的包應該是下面這個
importorg.springframework.stereotype.Service;