Error creating bean with name 'XXX': Injection of autowired dependencies failed错误的解决方法

2022-06-21 13:28:34

问题描述:----------------------------------------

类注入失败:改动代码过后 重新启动服务器时,报如下错误

 Error creating bean with name'com.space.portal.interceptor.LoginInterceptor#0': Injection of autowired dependencies failed :


导致原因 :---------------------------------------

1:类名写错了,2:包名写错了

其中:最有可能的就是,类名没有加上@Service注解

报这种错误,引起的方式有很多种

我的是因为    包名,写错了,所以spring映射不到,,,,,,,,

Error creating bean with name 'itemController': Injection of autowired dependencies failed:

第二次次报这个错是因为,我继承接口的实现类里忘了加@Service注解

解决方法:---------------------------------------

首先检测,名字有没有写错,其次查看所有的Service类是不是都有加上@Service注解

下面我还收集了几种可能的原因

https://blog.csdn.net/qq_31823265/article/details/53816663

https://blog.csdn.net/a411358606/article/details/54426424

  • 作者:czbkhhh
  • 原文链接:https://blog.csdn.net/czbkhhh/article/details/80100163
    更新时间:2022-06-21 13:28:34