Spring 基于Setter的依赖注入
当容器调用一个无参的构造函数或一个无参的静态 factory 方法来初始化你的 bean 后,通过容器在你的 bean 上调用 setter 方法,基于setter 方法的 DI 就完成了。
示例
下面的例子展示了一个 TextEditor 类,它只能使用基于 setter 的注入进行依赖注入。
下面是 TextEditor.java 文件的内容
TextEditor.java
package com.jiyik; public class TextEditor { private SpellChecker spellChecker; // 用于注入依赖项的 setter 方法。 public void setSpellChecker(SpellChecker spellChecker) { System.out.println("Inside setSpellChecker." ); this.spellChecker = spellChecker; } // 返回 spellChecker 的 getter 方法 public SpellChecker getSpellChecker() { return spellChecker; } public void spellCheck() { spellChecker.checkSpelling(); } }
在这里我们需要看 setter 方法的命名约定。 要设置变量 spellChecker,我们使用与 Java POJO 类非常相似的 setSpellChecker() 方法。 让我们创建另一个依赖类文件 SpellChecker.java
SpellChecker.java
package com.jiyik; public class SpellChecker { public SpellChecker(){ System.out.println("Inside SpellChecker constructor." ); } public void checkSpelling() { System.out.println("Inside checkSpelling." ); } }
以下是 MainApp.java 文件的内容
MainApp.java
package com.jiyik; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class MainApp { public static void main(String[] args) { ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml"); TextEditor te = (TextEditor) context.getBean("textEditor"); te.spellCheck(); } }
以下是配置文件 Beans.xml,其中包含基于构造函数的注入的配置
Beans.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-3.0.xsd"> <!-- Definition for textEditor bean --> <bean id = "textEditor" class = "com.jiyik.TextEditor"> <property name = "spellChecker" ref = "spellChecker"/> </bean> <!-- Definition for spellChecker bean --> <bean id = "spellChecker" class = "com.jiyik.SpellChecker"></bean> </beans>
应该注意在基于构造函数的注入和基于 setter 的注入中定义的 Beans.xml 文件的区别。 唯一的区别是在 <bean> 元素内部,我们使用 <constructor-arg> 标签进行基于构造函数的注入,使用 <property> 标签进行基于 setter 的注入。
第二个需要注意的重点是,如果你传递一个对象的引用,你需要使用 <property> 标签的 ref 属性,如果你直接传递一个值,那么你应该使用 value 属性。
创建完源代码和 bean 配置文件后,让我们运行应用程序。 如果应用程序一切正常,它将打印以下消息
Inside SpellChecker constructor.
Inside setSpellChecker.
Inside checkSpelling.
使用 p-namespace 的 XML 配置
如果你有很多 setter 方法,那么在 XML 配置文件中使用 p-namespace 会很方便。 让我们看一下区别
让我们考虑一个带有 <property> 标签的标准 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-3.0.xsd">
<bean id = "john-classic" class = "com.example.Person">
<property name = "name" value = "John Doe"/>
<property name = "spouse" ref = "jane"/>
</bean>
<bean name = "jane" class = "com.example.Person">
<property name = "name" value = "John Doe"/>
</bean>
</beans>
上面的 XML 配置可以使用 p-namespace 以更简洁的方式重写,如下所示
<?xml version = "1.0" encoding = "UTF-8"?>
<beans xmlns = "http://www.springframework.org/schema/beans"
xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
xmlns:p = "http://www.springframework.org/schema/p"
xsi:schemaLocation = "http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<bean id = "john-classic" class = "com.example.Person"
p:name = "John Doe"
p:spouse-ref = "jane"/>
</bean>
<bean name =" jane" class = "com.example.Person"
p:name = "John Doe"/>
</bean>
</beans>
在这里,应该注意使用 p-namespace 指定原始值和对象引用的区别。 -ref 部分表明这不是一个直接的值,而是对另一个 bean 的引用。