扫码一下
查看教程更方便
byType 此模式指定按属性类型自动装配。 Spring 容器查看在 XML 配置文件中将 autowire 属性设置为 byType 的 bean。 然后,如果它的类型与配置文件中的一个 bean 名称完全匹配,它会尝试匹配并连接一个属性。 如果找到匹配项,它将注入这些 bean。 否则,bean 将不会被连接。
例如,如果 bean 定义在配置文件中设置为 autowire byType,并且它包含 SpellChecker 类型的 spellChecker 属性,Spring 会查找名为 SpellChecker 的 bean 定义,并使用它来设置属性。 我们仍然可以使用 <property> 标记连接其余属性。 以下示例将说明概念,将发现与上述示例没有区别,只是 XML 配置文件已更改。
这是 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>
但是如果你打算使用自动装配 'byType',那么你的 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 = "byType"> <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.