Spring依賴註入的幾種方式分享梳理總結
環境
- Ubuntu 22.04
- IntelliJ IDEA 2022.1.3
- JDK 17.0.3
- Spring 5.3.21
準備
創建Maven項目 test0706
。
修改 pom.xml
文件,添加依賴:
...... <!-- https://mvnrepository.com/artifact/junit/junit --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.3.21</version> </dependency> ......
在 src/main/resources
目錄下創建 applicationContext.xml
文件:
<?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> </beans>
在 src/test/java
目錄下創建測試:
public class Test0706 { }
設值註入
創建如下POJO:
Axe
:Axe接口;StoneAxe
:Axe實現類;SteelAxe
:Axe實現類;Person
:Person持有Axe;
package pojo; public interface Axe { public void chop(); }
package pojo; public class StoneAxe implements Axe{ public StoneAxe() { System.out.println("StoneAxe constructor"); } @Override public void chop() { System.out.println("Stone axe!"); } }
package pojo; public class SteelAxe implements Axe{ public SteelAxe() { System.out.println("SteelAxe constructor"); } @Override public void chop() { System.out.println("Steel axe!"); } }
package pojo; public class Person { private String name; private Axe axe; public void setAxe(Axe axe) { this.axe = axe; } public void setName(String name) { this.name = name; } public void useAxe() { System.out.println("I am " + name); axe.chop(); } public Person() { System.out.println("Person constructor"); } }
在 applicationContext.xml
中註冊bean:
...... <bean id="stoneAxe" class="pojo.StoneAxe"/> <bean id="steelAxe" class="pojo.SteelAxe"/> <bean id="person" class="pojo.Person"> <property name="name" value="Tom"/> <property name="axe" ref="stoneAxe"/> </bean> ......
創建測試用例:
@Test public void test1() { var ctx = new ClassPathXmlApplicationContext("applicationContext.xml"); System.out.println("before getBean"); var person = ctx.getBean("person", Person.class); person.useAxe(); }
運行測試,如下:
StoneAxe constructor
SteelAxe constructor
Person constructor
before getBean
I am Tom
Stone axe!
總結:
- 一般的bean(相對工廠bean)是在Spring初始化時創建的(註意:默認的scope是
singleton
,如果是prototype
,則是在每次getBean()
的時候創建實例對象); - 可以直接註入值(
value
),也可以註入bean(ref
); - 被註入的bean(如本例中的
stoneAxe
)在Person
之前實例化; - 具體如何註入呢?是通過反射來調用Person的setter方法,其中方法名是字符串拼起來的,具體來講是
set
加上首字母大寫的屬性名
。本例中,person
有一個屬性叫做axe
,則Spring會拼出setAxe()
方法,並把ref
的對象作為參數傳進去。所以,一定要確保Person有對應的方法;
構造註入
構造註入和設值註入非常相像,二者的主要區別為:
- 設值註入是通過setter方法來註入被依賴對象;
- 構造註入是通過構造方法來註入被依賴對象;
創建如下POJO:
Book
:Book接口;PlayBook
:Book實現類;StudyBook
:Book實現類;Student
:Student持有Book;
package pojo; public interface Book { public void show(); }
package pojo; public class PlayBook implements Book{ public PlayBook() { System.out.println("PlayBook constructor"); } @Override public void show() { System.out.println("Play book!"); } }
package pojo; public class StudyBook implements Book{ public StudyBook() { System.out.println("StudyBook constructor"); } @Override public void show() { System.out.println("Study book!"); } }
package pojo; public class Student { private String name; private Book book; public Student(String name, Book book) { System.out.println("Student constructor"); this.name = name; this.book = book; } public void readBook() { System.out.println("I am " + name); book.show(); } }
在 applicationContext.xml
中註冊bean:
...... <bean id="playBook" class="pojo.PlayBook"/> <bean id="studyBook" class="pojo.StudyBook"/> <bean id="student" class="pojo.Student"> <constructor-arg index="0" value="Jerry"/> <constructor-arg index="1" ref="playBook"/> </bean> ......
創建測試用例:
@Test public void test2() { var ctx = new ClassPathXmlApplicationContext("applicationContext.xml"); System.out.println("before getBean"); var student = ctx.getBean("student", Student.class); student.readBook(); }
運行測試,如下:
……
PlayBook constructor
StudyBook constructor
Student constructor
before getBean
I am Jerry
Play book!
總結:
- 一般的bean(相對工廠bean)是在Spring初始化時創建的(註意:默認的scope是
singleton
,如果是prototype
,則是在每次getBean()
的時候創建實例對象); - 可以直接註入值(
value
),也可以註入bean(ref
); - 被註入的bean(如本例中的
PlayBook
)在Student
之前實例化; - 具體如何註入呢?是通過反射來調用bean的構造方法,如果有多個參數,可以用
index
來區分(下標從0
開始),所以一定要確保有對應的構造方法; 接口註入
接口註入和設值註入也很相像,都是通過setter方法來註入被依賴對象,二者的主要區別為:
- 接口註入需要實現特定接口,因此setter方法是固定的;
- 在設值註入中,被註入的具體對象是我們自己定的,而在接口註入中,被註入的對象是Spring決定的,我們不需要配置
<property>
來註入對象;
以 ApplicationContextAware
接口為例,在Spring初始化時,會掃描所有的bean,如果發現某個bean實現瞭該接口,就會自動調用其 setApplicationContext()
方法,把Spring容器本身傳進去;
創建POJO MyBean
:
package pojo; import org.springframework.beans.BeansException; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware; public class MyBean implements ApplicationContextAware { private ApplicationContext applicationContext; @Override public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { System.out.println("before setter"); this.applicationContext = applicationContext; } public void foo() { System.out.println(applicationContext.getDisplayName()); } }
在 applicationContext.xml
中註冊bean:
...... <bean id="myBean" class="pojo.MyBean"/> ......
創建測試用例:
@Test public void test3() { var ctx = new ClassPathXmlApplicationContext("applicationContext.xml"); System.out.println("before getBean"); var myBean = ctx.getBean("myBean", MyBean.class); myBean.foo(); }
運行測試,如下:
……
before setter
before getBean
org.springframework.context.support.ClassPathXmlApplicationContext@506e6d5e
總結:
- 無需配置註入對象;
- 具體如何註入呢?Spring會掃描所有的bean,如果發現某個bean實現瞭某些接口,就會自動調用其接口方法,把特定對象(比如Spring容器本身)傳進去; 自動裝配
對於bean之前的依賴關系,通常我們使用 ref
來顯式指定被註入的對象。Spring也支持自動裝配(autowire)。
常見的自動裝配策略有:
byName
:通過setter方法名來查找bean ID,跟前面說的通過bean ID來調用setter方法正好相反。具體操作為:去掉set
前綴,然後首字母小寫。比如setName()
方法,得到的bean ID是name
。如果找不到對應的bean ID,則不進行註入操作。由於ID是唯一的,所以不存在找到多個bean的情況;byType
:根據setter方法的參數類型來查找bean,如果找不到符合的bean,則不進行註入操作。如果找到多個符合的bean,則拋出異常;
創建如下POJO:
Ball
:Ball接口;FootBall
:Ball實現類;BasketBall
:Ball實現類;Athlete
:Athlete持有Ball;
package pojo; public interface Ball { public void fly(); }
package pojo; public class FootBall implements Ball{ @Override public void fly() { System.out.println("FootBall is flying"); } }
package pojo; public class BasketBall implements Ball{ @Override public void fly() { System.out.println("BasketBall is flying"); } }
package pojo; public class Athlete { private Ball ball; public void setBall(Ball ball) { this.ball = ball; } public void play() { ball.fly(); } }
在 applicationContext.xml
中註冊bean:
...... <bean id="footBall" class="pojo.FootBall"/> <bean id="basketBall" class="pojo.BasketBall"/> <bean id="athlete" class="pojo.Athlete" autowire="byName"/> ......
創建測試用例:
@Test public void test4() { var ctx = new ClassPathXmlApplicationContext("applicationContext.xml"); var athlete = ctx.getBean("athlete", Athlete.class); athlete.play(); }
運行測試,如下:
java.lang.NullPointerException: Cannot invoke "pojo.Ball.fly()" because "this.ball" is null
這是因為 autowire="byName"
,setter方法為 setBall()
。移除 set
前綴,並把首字母 B
變成 b
,所以會查找ID為 ball
的bean,但是沒有找到,所以不會註入對象。但是後面調用瞭Ball的 fly()
方法,所以報瞭空指針錯誤。
修改配置如下:
...... <bean id="ball" class="pojo.FootBall"/> <bean id="basketBall" class="pojo.BasketBall"/> <bean id="athlete" class="pojo.Athlete" autowire="byName"/> ......
再次運行測試,這次成功瞭:
FootBall is flying
修改配置,把 byName
改為 byType
:
...... <bean id="athlete" class="pojo.Athlete" autowire="byName"/> ......
再次運行測試,如下:
org.springframework.beans.factory.UnsatisfiedDependencyException:
Error creating bean with name 'athlete' defined in class path resource [applicationContext.xml]:
Unsatisfied dependency expressed through bean property 'ball';
nested exception is org.springframework.beans.factory.NoUniqueBeanDefinitionException:
No qualifying bean of type 'pojo.Ball' available:
expected single matching bean but found 2: ball,basketBall
找到瞭多個符合的bean,所以報錯瞭。
修改配置,隻保留一個Ball的實現類:
...... <!-- <bean id="ball" class="pojo.FootBall"/>--> <bean id="basketBall" class="pojo.BasketBall"/> <bean id="athlete" class="pojo.Athlete" autowire="byType"/> ......
再次運行測試,這次成功瞭。
BasketBall is flying
總結
- Bean默認的scope是
singleton
,表示在Spring初始化的時候創建,如果設置為prototype
,則是在每次getBean()
的時候創建實例對象(註:工廠bean創建bean行為有所不同,即使是singleton,也不是在Spring初始化時創建,而是在第一次getBean()
時創建,參見我另一篇文檔)。 - 可以直接註入值(
value
),也可以註入bean(ref
); - 被註入的bean(如本例中的
stoneAxe
)在Person
之前實例化;
具體如何註入呢?
- 設值註入:通過反射來調用bean的setter方法,其中方法名是字符串拼起來的,具體來講是
set
加上首字母大寫的屬性名
。所以,一定要確保bean有對應的方法; - 構造註入:通過反射來調用bean的構造方法,如果有多個參數,可以用
index
來區分(下標從0
開始),所以一定要確保有對應的構造方法; - 接口註入:無需配置註入對象。Spring會掃描所有的bean,如果發現某個bean實現瞭某些接口,就會自動調用其接口方法,把特定對象(比如Spring容器本身)傳進去;
自動裝配 :
byName
:通過setter方法名來查找bean ID,跟前面說的通過bean ID來調用setter方法正好相反。把setter方法名去掉 set
前綴,然後首字母小寫。比如對於 setName()
方法,得到的bean ID是 name
:
- 如果找不到對應的bean ID,則不進行註入操作;
- 如果找到對應的bean ID,則進行註入操作;
- 由於ID是唯一的,所以不存在找到多個bean ID的情況;
byType
:根據setter方法的參數類型來查找bean:
- 如果找不到符合的bean,則不進行註入操作;
- 如果找到唯一符合的bean,則進行註入操作;
- 如果找到多個符合的bean,則拋出異常;
到此這篇關於Spring依賴註入的幾種方式分享梳理總結的文章就介紹到這瞭,更多相關Spring依賴註入內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Spring為singleton bean註入prototype bean
- Spring創建bean實例的幾種方式分享
- Spring中如何使用@Value註解實現給Bean屬性賦值
- 深入瞭解Spring控制反轉IOC原理
- Spring IOC容器Bean管理XML註入集合類型屬性