遇到factory.BeanNotOfRequiredTypeException Bean named xxx is expected tobe of type

本文解决了在使用Spring框架时遇到的BeanNotOfRequiredTypeException错误,详细阐述了如何正确地从ApplicationContext中获取UserService接口的实现类,避免了由于AOP动态代理导致的类型不匹配问题。

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

遇到的错误

org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named ‘userServiceImpl’ is expected to be of type ‘com.huliyong.service.impl.UserServiceImpl’ but was actually of type ‘com.sun.proxy.$Proxy10’

UserServiceImpl userService = applicationContext.getBean("userServiceImpl", UserServiceImpl.class);

百度排查之后  发现是的原因是  aop 的动态代理的是一个接口  但是我写的是一个类
 修改如下就可以了 
UserService userService = (UserService) applicationContext.getBean("userServiceImpl");


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值