Spring 注入内部 Bean

如你所知,Java 内部类是在其他类的范围内定义的,类似地,内部 bean 是在另一个 bean 的范围内定义的 bean。 因此, 元素中的 元素称为内部 bean,如下所示。

<?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 = "outerBean" class = "...">
      <property name = "target">
         <bean id = "innerBean" class = "..."/>
      </property>
   </bean>

</beans>

示例

下面我们看一个示例,使用之前TextEditor的示例。

下面是 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();
   }
}

以下是另一个依赖类文件 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,它具有基于 setter 的注入但使用内部 bean 的配置

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 using inner bean -->
   <bean id = "textEditor" class = "com.jiyik.TextEditor">
      <property name = "spellChecker">
         <bean id = "spellChecker" class = "com.jiyik.SpellChecker"/>
      </property>
   </bean>

</beans>

创建完源代码和 bean 配置文件后,让我们运行应用程序。 如果应用程序一切正常,它将打印以下消息

Inside SpellChecker constructor.
Inside setSpellChecker.
Inside checkSpelling.

查看笔记

扫码一下
查看教程更方便