Bean named 'xx' is expected to be of type 'xx' but was actually of type 'com.sun.proxy.$Proxy29'

本文深入探讨了Spring框架中依赖注入的实现方式,包括如何通过接口进行类对象转换,以及在存在多个实现类时如何利用@Autowired和@Qualifier注解指定特定的实现类。此外,还介绍了如何在配置文件中通过name属性定位具体的Bean。

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

在这里插入图片描述
当要诸如一个接口的实现类时:

  1. 使用接口来进行类对象转换_
    UserService bean = ac.getBean(“UserServiceImpl”,UserService.class); // UserServiceImpl bean = ac.getBean("UserServiceImpl",UserServiceImpl.class);
  2. 多个不同的实现,根据添加name属性来查找

`
public interface UserService{

}

@Service(“UserServiceImpl”)
public class UserServiceImpl implements UserService{

}

@AutoWired
@Quatifirer(“UserServiceImpl”)
UserService UserServiceImpl;
`

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值