Spring IOC官方文档学习笔记(三)之依赖项(上),单例bean在默认情
Spring IOC官方文档学习笔记(三)之依赖项(上),单例bean在默认情
1.依赖注入
(1) 依赖注入(DI)的概念:某个bean的依赖项,由容器来负责注入维护,而非我们自己手动去维护,以此来达到bean之间解耦的目的,如下
//情况一:不使用依赖注入
public class A {}
public class B {
//B依赖了A对象,这种依赖关系是由我们自己手动来维护的,编码于代码之中,是强依赖
private A a = new A();
}
//情况二:使用依赖注入
@Component
public class A {}
@Component
public class B {
//B依赖了A对象,这个A对象是由容器来提供的,无需我们关心
@Autowired
private A a;
}
(2) 依赖注入的两种方式
- 基于构造函数的依赖注入:容器通过调用带有参数的构造函数来完成依赖项的注入,其中构造函数中的每个参数都代表一个依赖项,其参数解析规则如下
//例一:
//ExampleA继承自ExampleB
public class ExampleA extends ExampleB {}
public class ExampleB {}
public class Combine {
//Combine依赖了ExampleA和ExampleB
public Combine(ExampleA a, ExampleB b) {
}
}
<!-- xml配置文件 -->
<beans ...>
<bean id="exampleA" class="cn.example.spring.boke.ExampleA"></bean>
<bean id="exampleB" class="cn.example.spring.boke.ExampleB"></bean>
<bean id="combine" class="cn.example.spring.boke.Combine">
<!-- Spring会按照类型进行精确匹配,因此1会被注入到构造函数的第二个参数b中,而2会被注入到构造函数的第一个参数a中,此时与这些构造函数标签声明的先后顺序无关 -->
<constructor-arg ref="exampleB"></constructor-arg> <!-- 1 -->
<constructor-arg ref="exampleA"></constructor-arg> <!-- 2 -->
</bean>
</beans>
//例二:
//将Combine构造函数变更一下
public class Combine {
//构造函数参数均为ExampleB
public Combine(ExampleB b1, ExampleB b2) {
}
}
<!-- xml配置文件 -->
<bean id="combine" class="cn.example.spring.boke.Combine">
<!-- 此时无法进行精确匹配,因为构造函数参数均为ExampleB,这时就会按照这些构造函数标签声明的先后顺序进行依赖项的注入,
结果为1会被注入到构造函数的第一个参数b1中,而2会被注入到构造函数的第二个参数b2中,如果将这两个构造函数标签的声明顺序颠倒一下,结果也会随之相反 -->
<constructor-arg ref="exampleB"></constructor-arg> <!-- 1 -->
<constructor-arg ref="exampleA"></constructor-arg> <!-- 2 -->
</bean>
//例三
public class ExampleC {
public ExampleC(int number, String str) {
}
}
<!-- xml配置文件1 -->
<beans ...>
<bean id="c" class="cn.example.spring.boke.ExampleC">
<!-- 此时的Spring无法判断2000或50000究竟是一个int还是一个String,因此它首先会采取例二中的办法,按构造函数标签的声明顺序进行注入,结果为number被注入2000,str被注入字符串50000 -->
<constructor-arg value="2000"></constructor-arg>
<constructor-arg value="50000"></constructor-arg>
</bean>
</beans>
<!-- xml配置文件2 -->
<beans ...>
<bean id="c" class="cn.example.spring.boke.ExampleC">
<!-- 可以使用type属性,指定希望注入的参数的类型,来解决歧义问题,结果number被注入50000,str被注入字符串2000,但是如果构造函数参数列表中有多个类型相同的参数,则又会按照构造函数标签的声明顺序进行注入 -->
<constructor-arg type="java.lang.String" value="2000"></constructor-arg>
<constructor-arg type="int" value="50000"></constructor-arg>
</bean>
</beans>
<!-- xml配置文件3 -->
<bean id="c" class="cn.example.spring.boke.ExampleC">
<!-- 使用index属性,按构造函数参数索引位置进行注入,index属性为0的构造函数标签的值会被注入到构造函数的第一个参数,以此类推 -->
<constructor-arg index="1" value="50000"></constructor-arg>
<constructor-arg index="0" value="2000"></constructor-arg>
</bean>
<!-- xml配置文件4 -->
<bean id="c" class="cn.example.spring.boke.ExampleC">
<!-- 使用name属性,按照构造函数参数名称进行注入,不过要注意,Spring要求使用这种方式时必须开启debug flag或结合@ConstructorProperties注解一起使用,详见官方文档(此处存疑,因为在我本地可直接使用下面这种方式,无需其他配置) -->
<constructor-arg name="str" value="50000"></constructor-arg>
<constructor-arg name="number" value="2000"></constructor-arg>
</bean>
- 基于setter方法的依赖注入:在实例化bean之后,容器会调用setter方法来注入依赖项
public class ExampleA {}
public class ExampleC {
private ExampleA exampleA;
//使用setter方法注入依赖项exampleA
public void setExampleA(ExampleA exampleA) {
this.exampleA = exampleA;
}
}
<!-- 方法一:使用自动装配(autowire),即容器自动去寻找依赖项来进行注入 -->
<beans ...>
<!-- 被依赖项exampleA -->
<bean id="exampleA" class="cn.example.spring.boke.ExampleA"></bean>
<!-- 注意,在基于xml的配置中,如要使用基于setter的自动装配,则要指定autowire属性为byName或byType,如果不指定,则autowire属性默认为no,即不进行依赖注入 -->
<bean id="exampleC" class="cn.example.spring.boke.ExampleC" autowire="byType"></bean>
</beans>
<!-- 方法二:使用手动装配 -->
<beans ...>
<bean id="exampleA" class="cn.example.spring.boke.ExampleA"></bean>
<bean id="exampleC" class="cn.example.spring.boke.ExampleC">
<!-- 使用property标签手动注入,name即属性名称,ref代表注入对象 -->
<property name="exampleA" ref="exampleA"></property>
</bean>
</beans>
(3) 在依赖注入过程中,Spring会结合PropertyEditor一起使用,来将属性从一种类型转换为另一种类型,我们也可以利用PropertyEditor进行数据类型转换工作
(4) Spring对依赖项的解析规则:
- 创建ApplicationContext,并填充bean的配置元数据
- bean与bean之间的依赖关系蕴含于成员变量,构造函数参数等之中,当一个bean被创建时,它的依赖项会被提供
- 每个成员变量值或构造函数参数值要么是我们所提供的值,要么是对容器中另一个bean的引用
- Spring会对成员变量值或构造参数值进行确切的类型转换,以得到实际的类型,比如 <constructor-arg value="2000" ... 中的值2000,Spring会根据实际情况将其转换为字符串2000或int值2000
(5) Spring在容器创建完成后便会对bean的配置元数据进行检验(此时不会进行依赖项的注入,直到bean被成功创建后才会进行注入)。单例bean在默认情况下会被提前实例化(即在容器被创建后创建),而其他作用域的bean只有在需要的时候才会被创建(懒加载)。在实际创建bean时,Spring会尽可能晚设置该bean的属性值和依赖项,因此Spring容器可能在创建的时候正常但在之后的使用中会产生异常
(6) 在不存在循环依赖的情况下,bean A如果有一个依赖项为bean B,则Spring容器会在调用bean A的setBeanB方法来注入bean B之前会完全配置好bean B,即Bean B的依赖项已被完全注入,其生命周期回调也已被执行,如下
/**
* 提供三个类,ExampleA,ExampleB和ExampleC,其中ExampleA依赖了ExampleB,而ExampleC又依赖了ExampleA,即B->A->C
* 此时,容器会先配置好ExampleB,再注入给ExampleA,而ExampleA配置完毕后,最后会被注入给ExampleC,可观察控制台打印语句的输出顺序
*/
public class ExampleB {
public ExampleB() {
System.out.println("ExampleB构造器...");
}
}
public class ExampleA {
public ExampleA() {
System.out.println("ExampleA构造器...");
}
private ExampleB exampleB;
public void setExampleB(ExampleB exampleB) {
System.out.println("ExampleA设置了" + exampleB);
this.exampleB = exampleB;
}
}
public class ExampleC {
public ExampleC() {
System.out.println("ExampleC构造器...");
}
private ExampleA exampleA;
public void setExampleA(ExampleA exampleA) {
System.out.println("ExampleC设置了" + exampleA);
this.exampleA = exampleA;
}
}
<!-- xml配置文件 -->
<beans ...>
<bean id="exampleC" class="cn.example.spring.boke.ExampleC">
<property name="exampleA" ref="exampleA"></property>
</bean>
<bean id="exampleA" class="cn.example.spring.boke.ExampleA">
<property name="exampleB" ref="exampleB"></property>
</bean>
<bean id="exampleB" class="cn.example.spring.boke.ExampleB"></bean>
</beans>
(7) 依赖注入的例子:
//例一:
public class ExampleA {}
public class ExampleB {
private int year;
private ExampleA exampleA;
public void setYear(int year) {
this.year = year;
}
public void setExampleA(ExampleA exampleA) {
this.exampleA = exampleA;
}
}
<!-- xml配置文件 -->
<beans ...>
<bean id="exampleA" class="cn.example.spring.boke.ExampleA"></bean>
<bean id="exampleB" class="cn.example.spring.boke.ExampleB">
<!-- 注入其他bean -->
<property name="exampleA">
<ref bean="exampleA"></ref>
</property>
<!-- 注入基本类型 -->
<property name="year" value="20221222"></property>
</bean>
</beans>
//例二:
public class ExampleA {
public ExampleA(int number, String str) {
}
}
public class ExampleAFactory {
public static ExampleA createInstance(int number, String str) {
ExampleA exampleA = new ExampleA(number, str);
return exampleA;
}
}
<!-- xml配置文件 -->
<beans ...>
<bean id="exampleA" class="cn.example.spring.boke.ExampleAFactory" factory-method="createInstance">
<!-- 使用constructor-arg标签,来给静态工厂方法提供参数 -->
<constructor-arg name="number" value="2022"></constructor-arg>
<constructor-arg name="str" value="12"></constructor-arg>
</bean>
</beans>
2.依赖项配置细节
(1) 简单值:比如一个int,boolean或String等,Spring会将这些值转换为参数的实际类型,如下所示
public class ExampleA {
private Properties properties;
public void setProperties(Properties properties) {
this.properties = properties;
}
}
<!-- xml配置文件 -->
<beans ...>
<bean id="exampleA" class="cn.example.spring.boke.ExampleA">
<property name="properties">
<!-- Spring会借助PropertyEditor机制来将下面这些我们所定义的值转换为Properties类型并进行注入 -->
<value>
name=abc
phone=15311111111
</value>
</property>
</bean>
</beans>
(2) idref标签:传递一个bean的id,注意是bean的id,是一个字符串,而不是bean对象本身,它的好处是Spring会提前进行校验,看这个id所代表的那个bean是否存在,防止你把bean的id给拼错了
public class ExampleB {}
public class ExampleA {
//注意这里是String类型,而不是ExampleB类型
private String exampleB;
public void setExampleB(String exampleB) {
this.exampleB = exampleB;
}
}
<!-- xml配置文件 -->
<beans ...>
<bean id="exampleB" class="cn.example.spring.boke.ExampleB"></bean>
<bean id="exampleA" class="cn.example.spring.boke.ExampleA">
<property name="exampleB">
<!-- 此处将exampleB这个字符串作为参数传给ExampleA的成员变量exampleB,而非将exampleB这个bean传过去 -->
<idref bean="exampleB"></idref>
</property>
<!-- 上面的等价于下面这个property标签,注意这个property标签内部使用的是value属性而不是ref属性 -->
<!-- <property name="exampleB" value="example"></property> -->
</bean>
</beans>
(3) 依赖其他的bean:通过ref标签,来引用同一容器或父容器中的bean,而不管它们是否配置在了同一个xml文件中,ref标签主要使用bean属性和parent属性,它们的值均为目标bean的id或name
<beans ...>
<bean id="exampleB" class="cn.example.spring.boke.ExampleB"></bean>
<!-- ExampleA对象依赖了ExampleB对象 -->
<bean id="exampleA" class="cn.example.spring.boke.ExampleA">
<property name="exampleB">
<!-- 使用ref标签中的bean属性,来引用id为exampleB的bean进行注入,使用bean属性时,被引用的bean可在当前容器中,也可在当前容器的父容器中 -->
<ref bean="exampleB"></ref>
<!-- 使用ref标签中的parent属性,来引用父容器中id为parentExampleB的bean进行注入,parent属性适用于容器分层的时候,被引用的bean必须在当前容器的父容器中 -->
<!-- <ref parent="parentExampleB"></ref> -->
</property>
</bean>
</beans>
(4) Inner bean:Inner bean与匿名内部类相似,当一个bean标签位于一个property标签或constructor-arg标签内部时,就定义了一个Inner bean,定义Inner bean不需要指定它的id,name或scope,它们会被容器忽略掉,因为Inner bean始终是匿名的,与外部bean一起被创建,我们不能单独访问Inner bean或将其注入到其他的bean中
<beans ...>
<!-- ExampleA对象依赖了ExampleB对象 -->
<bean id="exampleA" class="cn.example.spring.boke.ExampleA">
<property name="exampleB">
<!-- ExampleB对象此时是一个Inner Bean -->
<bean class="cn.example.spring.boke.ExampleB">
</bean>
</property>
</bean>
</beans>
(5) 集合:list,set,map,和props标签分别用于配置List,Set,Map和Properties类型,如下
public class ExampleA {
private Properties properties;
private List<String> list;
private Map<String, Integer> map;
private Set<String> set;
public void setProperties(Properties properties) {
this.properties = properties;
}
public void setList(List<String> list) {
this.list = list;
}
public void setMap(Map<String, Integer> map) {
this.map = map;
}
public void setSet(Set<String> set) {
this.set = set;
}
}
<!-- xml配置文件 -->
<beans ...>
<!-- 不仅可以向集合中注入一些基本的类型,还可注入容器中的bean -->
<bean id="exampleA" class="cn.example.spring.boke.ExampleA">
<property name="properties">
<props>
<prop key="name">abc</prop>
<prop key="phone">15311111111</prop>
</props>
</property>
<property name="list">
<list>
<value>My List</value>
<value>Test</value>
</list>
</property>
<property name="map">
<map>
<entry key="height" value="200"/>
<entry key="weight" value="400"/>
</map>
</property>
<property name="set">
<set>
<value>test1</value>
<value>test2</value>
</set>
</property>
</bean>
</beans>
(6) 合并集合:可以bean A中声明list,map,set或props标签,并设置bean B的parent属性为bean A且bean B中的list,map,set或props标签的merge属性为true来继承或覆盖bean A集合中的某些值,达到合并集合的目的,如下
//注意,下面这个ExampleA和ExampleB是相互独立的关系,它们之间不存在继承关系
public class ExampleA {
private List<String> list;
private Map<String, Integer> map;
public void setList(List<String> list) {
this.list = list;
}
public void setMap(Map<String, Integer> map) {
this.map = map;
}
}
public class ExampleB {
private List<String> list;
private Map<String, Integer> map;
public void setList(List<String> list) {
this.list = list;
}
public void setMap(Map<String, Integer> map) {
this.map = map;
}
@Override
public String toString() {
return "ExampleB{" +
"list=" + list +
", map=" + map +
'}';
}
}
<!-- xml配置文件 -->
<beans ...>
<!-- exampleA,一个普通的bean -->
<bean id="exampleA" class="cn.example.spring.boke.ExampleA">
<property name="list">
<list>
<value>parent</value>
<value>common</value>
</list>
</property>
<property name="map">
<map>
<entry key="parent" value="1"></entry>
<entry key="common" value="2"></entry>
</map>
</property>
</bean>
<!-- 注意:exampleB要指定它的parent属性,表明它要继承哪个bean -->
<bean id="exampleB" class="cn.example.spring.boke.ExampleB" parent="exampleA">
<property name="list">
<!-- 这里将merge属性设置为true,表明需要继承parent bean中的集合 -->
<list merge="true">
<value>common</value>
<value>son</value>
</list>
</property>
<property name="map">
<map merge="true">
<entry key="common" value="233"></entry>
<entry key="son" value="2333"></entry>
</map>
</property>
</bean>
</beans>
//获取容器中的exampleB,并打印,可以看到parent bean中集合中的元素被继承覆盖:
ExampleB{list=[parent, common, common, son], map={parent=1, common=233, son=2333}}
使用集合合并时需注意,不能合并不同类型的集合(例如将Map和List进行合并),如果这样做,Spring会抛出异常,此外merge属性必须在子bean中指定,在父bean上指定merge属性是多余的
(7) 注入null或空字符串
public class ExampleA {
private String str1;
private String str2;
public void setStr1(String str1) {
this.str1 = str1;
}
public void setStr2(String str2) {
this.str2 = str2;
}
}
<!-- xml配置文件 -->
<beans ...>
<bean id="exampleA" class="cn.example.spring.boke.ExampleA">
<!-- 此时注入的是空字符串,等价于exampleA.setStr1("") -->
<property name="str" value=""></property>
<!-- 此时注入的是null,等价于exampleA.setStr2(null) -->
<property name="str2">
<null/>
</property>
</bean>
</beans>
(8) p命名空间,用来替换掉property标签;c命名空间,用来替换掉constructor-arg标签,它们的作用就是简化代码,其他就没什么了,具体实例省略,详见官方文档
(9) 向嵌套属性中注入值:要求组件嵌套路径中的对象都不能为null,如下,exampleB.exampleC.str这个路径中exampleB和exampleC都不能为null,否则会抛出空指针异常
//这里有3个类,其中ExampleA依赖了ExampleB,ExampleB又依赖了ExampleC,ExampleC有一个属性str
//注意这里的ExampleA和ExampleB都要提供setter和getter方法,用于获取,设置外层类,而ExampleC只需提供setter方法来用于注入str属性
public class ExampleA {
private ExampleB exampleB;
public ExampleB getExampleB() {
return exampleB;
}
public void setExampleB(ExampleB exampleB) {
this.exampleB = exampleB;
}
}
public class ExampleB {
private ExampleC exampleC;
public ExampleC getExampleC() {
return exampleC;
}
public void setExampleC(ExampleC exampleC) {
this.exampleC = exampleC;
}
}
public class ExampleC {
private String str;
public void setStr(String str) {
this.str = str;
}
}
<!-- xml配置文件 -->
<beans ...>
<bean id="exampleC" class="cn.example.spring.boke.ExampleC"></bean>
<bean id="exampleB" class="cn.example.spring.boke.ExampleB"></bean>
<bean id="exampleA" class="cn.example.spring.boke.ExampleA">
<!-- 向exampleA注入嵌套的属性,如果中间过程中有一处为null,则会抛出空指针异常 -->
<property name="exampleB" ref="exampleB"></property>
<property name="exampleB.exampleC" ref="exampleC"></property>
<!-- 将嵌套的属性str设置为1233 -->
<property name="exampleB.exampleC.str" value="1233"></property>
</bean>
</beans>
用户点评