解决SpringBoot启动失败:A component required a bean of type ‘xxxxxxx‘ that could not be found.

这篇具有很好参考价值的文章主要介绍了解决SpringBoot启动失败:A component required a bean of type ‘xxxxxxx‘ that could not be found.。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

问题描述

今天写了一个MD5加密加盐工具类,运用到实际业务代码中缺报错了,内容如下:


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

Description:

A component required a bean of type 'com.wyh.util.SaltMD5Util' that could not be found.


Action:

Consider defining a bean of type 'com.wyh.util.SaltMD5Util' in your configuration.

a component required a bean of type,Java,SpringBoot,报错,spring boot,spring,java

分析问题

根据错误日志不难发现,其实是因为组件没有被找到。因为这个工具类是我自己写的。

然后我就去检查代码,最终发现,我把这个工具类以注解的形式注入进来并使用

a component required a bean of type,Java,SpringBoot,报错,spring boot,spring,java

但是,这个工具类里面,我没有标明这个工具类是一个bean文件。所以项目扫描不到,就报了错。

解决问题

想要解决这种问题也十分的简单,目前想到两种方式

不注入bean的方式

我们可以换种思路,不注入bean文件,直接通过工具类下的方法直接调用

a component required a bean of type,Java,SpringBoot,报错,spring boot,spring,java

使用@Component

如果觉得直接调用工具类下的方法不舒服,非要使用bean的方式,name可以使用@Component注解

直接修饰类文件即可。

注意,不要引用错哦,用的是下面这个注解
import org.springframework.stereotype.Component;

a component required a bean of type,Java,SpringBoot,报错,spring boot,spring,java

再次重启解决问题。

a component required a bean of type,Java,SpringBoot,报错,spring boot,spring,java

扩展:@Component解释说明

@Component是spring中的一个注解,它的作用就是实现bean的注入。在Java的web开发中,提供3个@Component注解衍生注解(功能与@component一样)分别是:

1、@Controller 控制器(注入服务) 用于标注控制层,相当于struts中的action层。

2、@Service 服务(注入dao) 用于标注服务层,主要用来进行业务的逻辑处理

3、@Repository(实现dao访问) 用于标注数据访问层,也可以说用于标注数据访问组件,即DAO组件

而@Component泛指各种组件,就是说当我们的类不属于各种归类的时候(不属于@Controller、@Services等的时候),我们就可以使用@Component来标注这个类。文章来源地址https://www.toymoban.com/news/detail-828677.html

到了这里,关于解决SpringBoot启动失败:A component required a bean of type ‘xxxxxxx‘ that could not be found.的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包