Spring的@Autowired加到接口上但获取的是实现类的问题

作者:发则韩 时间:2023-08-23 21:32:21 

@Autowired加到接口上但获取的是实现类

问题

Spring的@Autowired加到接口上但获取的是实现类?

    /* 类 @Controller注解,会在spring容器中实例化对象 */
    @Controller
    public class UserContoller{
        @Autowired        // 先按类型找,然后按id为属性名去找
        private UserService userService;
        //为什么他会拿到userServiceImpl?
        // @Autowired会帮你按UserService的类型去容器中找唯一bean对象
        // 1、容器没有该类型的对象:报错
        // 2、容器中有该类型的唯一bean对象,就将该唯一bean对象赋值给该属性
        ///3、容器中有多个【两个及以上】该类型的唯一bean对象,
        //     它会再根据该属性名去容器中找,
        //     看看容器中的哪个bean对象的id值和该属性名一致,
        //     如果有,就将容器中该对象赋值给该属性,如果没有报错。
    }    
    /* 接口  */
    public interface UserService{}
    
    /* 类  @Service注解,会在spring容器中实例化对象 */
    @Service
    public class UserServiceImpl implements UserService{}

为什么他会拿到userServiceImpl?

@Autowired先按类型找,然后再按id为属性名去找

他会帮你按UserService的类型去容器中找唯一bean对象

  • 1.容器没有该类型的对象:报错

  • 2.容器中有该类型的唯一bean对象,就将该唯一bean对象赋值给该属性

  • 3.容器中有多个【两个及以上】该类型的唯一bean对象,

它会再根据该属性名去容器中找,看看容器中的哪个bean对象的id值和该属性名一致,如果有,就将容器中该对象赋值给该属性,如果没有报错。

然后通过多态的向上转型就赋值成功。等价于之前手动赋值

UserService userService = new UserServiceImpl();

@Autowired一个接口有多个实现类

@Autowired是spring的注解,默认使用的是byType的方式向Bean里面注入相应的Bean。

例如

@Autowired
private UserService userService;

这段代码会在初始化的时候,在spring容器中寻找一个类型为UserService的bean实体注入,关联到userService的引入上。

但是如果UserService这个接口存在多个实现类的时候,就会在spring注入的时候报错,具体如下:

public class UserService1 implements UserService
public class UserService2 implements UserService

当存多个UserService的实现类时,错误信息如下:

2016-08-05 14:53:53,795 ERROR [org.springframework.test.context.TestContextManager] - <Caught exception while allowing TestExecutionListener [org.springframework.test.context.support.DependencyInjectionTestExecutionListener@14a2f921] to prepare test instance [UserServiceTest@3c87521]>
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'UserServiceTest': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private yjc.demo.service.UserService UserServiceTest.userService; nested exception is he[yjc.demo.service.UserService] is defined: expected single matching bean but found 2: userService1,userService2

抛出了org.springframework.beans.factory.BeanCreationException,而原因是注入的时候发现有2个匹配的bean,但是不知道要注入哪一个:expected single matching bean but found 2: userService1,userService2

那么如何应对多个实现类的场景呢,看一下代码:

@Autowired
private UserService userService1;
 
@Autowired
private UserService userService2;
 
@Autowired
@Qualifier(value = "userService2")
private UserService userService3;
 
@Test
public void test(){
         System.out.println(userService1.getClass().toString());
         System.out.println(userService2.getClass().toString());
         System.out.println(userService3.getClass().toString());
}

运行结果:

class yjc.demo.serviceImpl.UserService1
class yjc.demo.serviceImpl.UserService2
class yjc.demo.serviceImpl.UserService2

运行结果成功,说明了2种处理多个实现类的方法:

1.变量名用userService1,userService2,而不是userService。

通常情况下@Autowired是通过byType的方法注入的,可是在多个实现类的时候,byType的方式不再是唯一,而需要通过byName的方式来注入,而这个name默认就是根据变量名来的。

2.通过@Qualifier注解来指明使用哪一个实现类,实际上也是通过byName的方式实现。

由此看来,@Autowired注解到底使用byType还是byName,其实是存在一定策略的,也就是有优先级。优先用byType,而后是byName。

来源:https://blog.csdn.net/weixin_43575868/article/details/104535986

标签:Spring,@Autowired,接口,实现类
0
投稿

猜你喜欢

  • 详解android系统的定制

    2022-03-14 11:20:19
  • 基于mybatis plus实现数据源动态添加、删除、切换,自定义数据源的示例代码

    2021-08-20 20:07:46
  • WPF如何利用附加属性修改ShowGridLines效果详解

    2023-04-01 06:32:04
  • C#中sleep和wait的区别分析

    2021-09-11 08:31:25
  • Java实现递归计算n的阶乘

    2021-06-26 14:34:26
  • Android利用属性动画实现优酷菜单

    2022-06-15 13:16:44
  • Android 自定义View之边缘凹凸的优惠券效果的开发过程

    2021-12-30 07:25:10
  • Android波纹扩散效果之仿支付宝咻一咻功能实现波纹扩散特效

    2023-07-06 17:22:01
  • lambda表达式解决java后台分组排序过程解析

    2023-11-29 06:03:39
  • Java实现顺时针输出螺旋二维数组的方法示例

    2022-02-03 00:11:41
  • Hibernate双向多对多映射关系配置代码实例

    2022-12-26 22:30:30
  • Java JDK与cglib动态代理有什么区别

    2023-07-23 08:10:15
  • 详解Java8 CompletableFuture的并行处理用法

    2023-07-27 11:48:06
  • C#数组中List, Dictionary的相互转换问题

    2022-11-03 00:10:37
  • C#中值类型和引用类型解析

    2023-02-10 22:41:33
  • Android移动应用开发指南之六种布局详解

    2022-09-10 06:23:44
  • springboot jackson配置教程

    2021-12-10 20:47:16
  • Java女装商城系统的实现流程

    2023-09-23 11:53:51
  • Android 5.0中CoordinatorLayout的使用技巧

    2023-02-24 13:58:18
  • android通过servlet上传文件到服务器

    2021-10-07 05:44:02
  • asp之家 软件编程 m.aspxhome.com