Could not autowire. No beans of 'DeptMapper' type found.
时间: 2023-10-28 14:25:13 浏览: 85
学习Spring教程时,无法继承SpringBeanAutowiringSupport类
"Could not autowire. No beans of 'DeptMapper' type found."这个错误表示在自动装配时找不到类型为'DeptMapper'的bean。
出现这个错误可能有几个原因。首先,可能是没有在Spring的配置文件中正确注册'DeptMapper'类型的bean。你可以检查一下配置文件,确保正确地配置了'DeptMapper' bean。
另外,这个错误也可能是由于mapper接口没有正确使用@Mapper注解导致的。请确认你的'mapper'接口上是否已经添加了@Mapper注解。
此外,还有可能是mapper.xml文件没有正确加载到项目的目标目录中。你可以检查一下项目的maven配置和映射文件是否正确配置,并且重新运行项目。
综上所述,如果出现"Could not autowire. No beans of 'DeptMapper' type found."错误,你可以检查以下几个方面:1. 确保正确注册了'DeptMapper'类型的bean;2. 确认'mapper'接口上已经添加了@Mapper注解;3. 检查maven配置和映射文件是否正确。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [Could not autowire. No beans of ‘xxxMapper‘ type found.](https://blog.csdn.net/qq_19309473/article/details/123605602)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *2* *3* [SpringBoot项目下的mapper接口代理类无法注入Spring容器的Bug](https://blog.csdn.net/weixin_45943597/article/details/117754898)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文