Spring Dependency Injection 简明教程

Spring DI - Setter-Based

基于 Setter 的 DI 由在调用无参数构造函数或无参数静态工厂方法来实例化 bean 之后,容器通过调用你 bean 上的 setter 方法来完成。

Example

以下示例展示了 TextEditor 类,它只能使用纯基于 setter 的注入进行依赖项注入。

让我们更新在 Spring DI - Create Project 章节中创建的项目。我们将添加以下文件 −

  1. TextEditor.java − 包含 SpellChecker 作为依赖项的类。

  2. SpellChecker.java − 依赖项类。

  3. MainApp.java - 要运行和测试的主应用。

以下为 TextEditor.java 文件的内容 −

package com.tutorialspoint;
public class TextEditor {
   private SpellChecker spellChecker;

   // a setter method to inject the dependency.
   public void setSpellChecker(SpellChecker spellChecker) {
      System.out.println("Inside setSpellChecker." );
      this.spellChecker = spellChecker;
   }
   // a getter method to return spellChecker
   public SpellChecker getSpellChecker() {
      return spellChecker;
   }
   public void spellCheck() {
      spellChecker.checkSpelling();
   }
}

此处你需要检查 setter 方法的命名约定。要设置变量 spellChecker ,我们要使用 setSpellChecker() 方法,它与 Java POJO 类非常相似。让我们创建另一个依赖类文件的 SpellChecker.java 内容

package com.tutorialspoint;

public class SpellChecker {
   public SpellChecker(){
      System.out.println("Inside SpellChecker constructor." );
   }
   public void checkSpelling() {
      System.out.println("Inside checkSpelling." );
   }
}

以下是 MainApp.java 文件的内容

package com.tutorialspoint;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MainApp {
   public static void main(String[] args) {
      ApplicationContext context = new ClassPathXmlApplicationContext("applicationcontext.xml");

      TextEditor te = (TextEditor) context.getBean("textEditor");
      te.spellCheck();
   }
}

以下是用于基于 setter 的注入的配置的配置文件 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-3.0.xsd">

   <!-- Definition for textEditor bean -->
   <bean id = "textEditor" class = "com.tutorialspoint.TextEditor">
      <property name = "spellChecker" ref = "spellChecker"/>
   </bean>

   <!-- Definition for spellChecker bean -->
   <bean id = "spellChecker" class = "com.tutorialspoint.SpellChecker"></bean>
</beans>

您应当注意构造函数注入和基于 Setter 注入中 applicationcontext.xml 文件定义中的差异。唯一差异在于 <bean> 元素内部,我们对基于构造函数的注入使用了 <constructor-arg> 标签,对基于 Setter 的注入使用了 <property> 标签。

需要记住的第二项重要内容是如果您传递了对象引用,则需要使用 <property> 标签的 ref 属性,如果您直接传递了 value ,则应该使用 value 属性。

Output

在您完成创建源文件和 bean 配置文件后,我们可以运行该应用程序。如果您的应用程序没有问题,它将打印以下消息:

Inside SpellChecker constructor.
Inside setSpellChecker.
Inside checkSpelling.