Spring 自动装配 byName

返回 Spring Beans 自动装配


byName 模式通过属性名称指定自动装配。 Spring 容器查看在 XML 配置文件中将 auto-wire 属性设置为 byName 的 bean。 然后,它尝试将其属性与配置文件中由相同名称定义的 bean 进行匹配和连接。 如果找到匹配项,它将注入这些 bean。 否则,bean 将不会被连接。

例如,如果一个 bean 定义在配置文件中设置为 autowire byName,并且它包含一个 spellChecker 属性(即它有一个 setSpellChecker(...) 方法),那么 Spring 会查找一个名为 spellChecker 的 bean 定义,并使用 它来设置属性。 仍然可以使用 <property> 标记连接其余属性。 下面的例子将说明这个概念。

这是 TextEditor.java 文件的内容

TextEditor.java

package com.jiyik;

public class TextEditor {
   private SpellChecker spellChecker;
   private String name;
   
   public void setSpellChecker( SpellChecker spellChecker ){
      this.spellChecker = spellChecker;
   }
   public SpellChecker getSpellChecker() {
      return spellChecker;
   }
   public void setName(String name) {
      this.name = name;
   }
   public String getName() {
      return name;
   }
   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

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" />
      <property name = "name" value = "Generic Text Editor" />
   </bean>

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

</beans>

但是如果你打算使用自动装配 'byName',那么你的 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" autowire = "byName">
      <property name = "name" value = "Generic Text Editor" />
   </bean>

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

</beans>

如果你已经完成上面的内容,接下来,让我们运行这个应用程序。如果程序没有错误,你将从控制台看到以下信息:

Inside SpellChecker constructor.
Inside checkSpelling.

返回 Spring Beans 自动装配

查看笔记

扫码一下
查看教程更方便