欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Spring中@Autowire注入的深入讲解

程序员文章站 2022-06-27 13:43:12
一直在思考spring的@autowire注入属性时到底是按类型注入还是按名称注入,今天写了一个测试来证明一下。定义接口testservicepublic interface testservice...

一直在思考spring的@autowire注入属性时到底是按类型注入还是按名称注入,今天写了一个测试来证明一下。

定义接口testservice

public interface testservice {
 void test();
}

定义接口实现:testserviceimpl1和testserviceimpl2

@service
public class testserviceimpl1 implements testservice {

 public void test() {
  system.out.println(1111);
 }
}
@service
public class testserviceimpl2 implements testservice {

 public void test() {
  system.out.println(2222);
 }
}

定义一个bean依赖testservice,

@controller
public class testcontroller {
	//此时的beanbame=testservice
 @autowired
 testservice testservice;

 public void test(){
  testservice.test();
 }
}

编写测试类:

@configuration
@componentscan("test")
public class test {
 public static void main(string[] args) {
  annotationconfigapplicationcontext context=new annotationconfigapplicationcontext();
  context.register(test.class);
  context.refresh();
  testservice bean = context.getbean(testservice.class);
  bean.test();
 }
}

启动项目跟踪源码:在spring工厂初始化bean填充属性的时候,abstractautowirecapablebeanfactory.populatebean()方法中会执行后置处理器autowiredannotationbeanpostprocessor.postprocesspropertyvalues() ,继续跟踪,在defaultlistablebeanfactory.doresolvedependency()方法中的findautowirecandidates()根据类型匹配到两个bean,见截图:

Spring中@Autowire注入的深入讲解

由于获取的bean超过两个,spring会根据名称去匹配,如果匹配成功则返回对应的bean;如果匹配失败,则会抛出异常。如图:

Spring中@Autowire注入的深入讲解

到此为止,我们已经能发现@autowire注解注入属性的原理:先根据类型注入,如果获取到多个bean,则根据名称匹配,若名称未匹配上就抛出异常。

总结

到此这篇关于spring中@autowire注入的文章就介绍到这了,更多相关spring中@autowire注入内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!