SpringBoot启动报错:The injection point has the following annotations: - @org.springframework.beans

本文记录了一位开发者在使用SpringBoot构建小程序后台接口时遇到的应用启动失败问题。在编写了一系列VO、service、impl、controller后,由于缺少@Service注解,导致IcbcServiceImpl接口实现类未被扫描到,从而引发错误。通过在启动类添加@ComponentScan注解尝试解决,但未奏效。最终,开发者发现并修复了IcbcServiceImpl上缺失的@Service注解,成功启动了应用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

最近用SpringBoot写了一个项目,作为小程序的后台接口,开始的时候没有问题,当一系列的VO、service、impl、controller等方法写完以后,发现无法启动,报如下错误:

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

Description:

Field icbc in com.yundaotu.hebi.service.AppImpl required a bean of type 'com.wx.service.IcbcService' 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.wx.service.IcbcService' in your configuration.

上网查找原因说是找不到那个类,需要添加一个注解:

在springboot启动类上添加注解 @ComponentScan(basePackages = { "com.wx" }),添加之后但仍然没有解决;

于是经过各种仔细检查,发现是IcbcServiceImpl的接口实现类上没有添加@Service注解

 

添加之后 启动成功

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

2022拾捌

如果能帮到你,就打赏一下吧

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值