错误信息:
countrySsoServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'userAccountService' is expected to be of type 'cn.hsa.usc.UserAccountService' but was actually of type 'com.taobao.hsf.app.spring.util.HSFSpringConsumerBean'
这个问题出现的原因:一般在使用annotation的方式注入spring的bean 出现的,具体是由于spring采用代理的机制导致的,看使用的代码(required = false):
@Autowired(required = false)
private UserAccountService userAccountService;
本地连不上中台的服务会导致这个报错,解决办法是改为required = false即可,为true该bean必须存在,否则就会注入失败。
分析:
在容器的启动过程中,会初始化很多bean,这也是spring的核心之一(IOC)。但是在注入的过程中,扫描到公共方法中要注入的bean,并未找到,强行注入就会注入失败。我们又不能单独的去除改方法,所以我们采取的思想就是有bean就注入,没有就不注入。解决办法就是@Autowired(required=false),而发布到生产环境也不必手动改成true,生产环境如有就会自动注入