Error creating bean with name ‘xxx‘ Bean named ‘xxx‘ is expected to be of type【日常报错】

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userController': Unsatisfied dependency expressed through field 'userService'; nested exception is org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'userService' is expected to be of type 'com.lianzhi.crm.settings.service.impl.UserService' but was actually of type 'com.sun.proxy.$Proxy19'
	org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:588)
	org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:88)
	org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:366)
	org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1264)

原因:getBean方法 第二个参数应该写的是接口,而不是它的实现类(动态代理的是接口);

没有使用框架自动注入时候

//正确用法
UserService userService = getBean("userService",IUserService.class)

//这样使用报错
//UserService userService = getBean("userService",UserService.class)


当我们使用框架时候,底层框架帮我们封装的底层自动注入获得bean的方式也是使用也是使用getBean方法,所以要用接口类型来引用实现类对象;

使用Spring框架自动注入时候

//正确用法
private IUserService userService;

//这样使用报错
//private UserService userService; 

特别注意:动态代理的是接口【记住使用框架要用接口类型来定义实现类Bean实例】;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值