Could not autowire. No beans of 'xxx' type found

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2019-07-31 15:33:15.798 ERROR 14420 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************

Description:

Field idWorker in com.example.springbootmybatis.controller.TeacherController required a bean of type 'com.aspire.commons.autoid.IdWorker' that could not be found.

The injection point has the following annotations:
    - @org.springframework.beans.factory.annotation.Autowired(required=true)


Action:

Consider defining a bean of type 'com.aspire.commons.autoid.IdWorker' in your configuration.

 

同时注入报红

1、Idea设置为警告,或者降低检测级别@Autowired(required = false)

2、更改@Autowired为@Resource

3、在服务层加上注解@Service或

在mapper接口类上加上@Repository或@Component标签

确保包导入正确,@Service正确导入的是import org.springframework.stereotype.Service;

4、启动类放在所有类外层,保证能扫描到所有子包。或者在启动类上添加扫描路径

@ComponentScan(basePackages = {"com.xxx"})

@ComponentScan(basePackageClasses= XXXController.class)

@SpringBootApplication(scanBasePackages={"com.xxx"})

5、在启动类中配置@Bean,或者在引用类上添加@Bean注解

在一个配置类中定义这个类,即可正确修复。
 @Bean
    public IdWorker idWorker() {
        return new IdWorker();
    }

 

6、mapper接口提示:Could not autowire. No beans of 'XXXMapper' type found.

使用到mapper的类序列化,即实现Serializable 接口即可

每个Mapper类中添加 @Mapper

在application.java启动类前面加上 @MapperScan(),参数为dao层包的路径

  • 5
    点赞
  • 25
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
在给出的引用中,引用和引用都提到了"Could not autowire. No beans of 'XXX' type found"这个错误。这个错误通常是由于在自动装配(autowire)时找不到相应类型的bean所引起的。在本问题中,错误信息为"Could not autowire. No beans of 'RepayCalcPlugin' type found"。这意味着在自动装配RepayCalcPlugin时找不到相应类型的bean。可能的原因是没有为RepayCalcPlugin定义或注册bean。要解决这个问题,你需要检查代码或配置文件,确保正确地定义和注册RepayCalcPlugin的bean。<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/m0_58019259/article/details/130526726)[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_1"}}] [.reference_item style="max-width: 50%"] - *2* *3* [Could not autowire. No beans of ‘XXXtype 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_1"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值