Could not autowire. No beans of 'JieConfigurationService' type found.
时间: 2023-10-28 21:22:11 浏览: 149
spring mybatis 3.x 使用图文
"Could not autowire. No beans of 'JieConfigurationService' type found." 这个错误提示通常出现在Spring框架中,表示在注入依赖时找不到对应的bean。这可能是由于以下几个原因导致的:
1. 没有在Spring容器中声明或配置 'JieConfigurationService' bean。请确保在配置文件或使用注解的方式中正确配置了该bean。
2. 'JieConfigurationService' bean 配置的名字与注入注解中引用的名字不一致。请检查注入的代码,确保注解中的名字与bean的名字一致。
3. 依赖包或类文件缺失。检查是否缺少了引用 'JieConfigurationService' 类的依赖包或者类文件。确保该类在编译时可以被正确找到。
综上所述,要解决这个问题,你需要检查以下几个方面:确认 'JieConfigurationService' bean 已经在Spring容器中正确配置,并且注解中引用的名字与配置的名字一致。同时,确保依赖包和类文件都存在并被正确引入。这样,你应该能够解决 "Could not autowire. No beans of 'JieConfigurationService' type found." 的错误提示。
#### 引用[.reference_title]
- *1* *2* [Could not autowire. No beans of ‘XXX‘ type found](https://blog.csdn.net/weixin_44096133/article/details/128679145)[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%"]
- *3* [Idea 解决 Could not autowire. No beans of 'xxxx' type found 的错误提示](https://download.csdn.net/download/weixin_38632624/12751965)[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 ]
阅读全文