constructor
优质
小牛编辑
138浏览
2023-12-01
此模式与byType非常相似,但它适用于构造函数参数。 Spring容器查看XML配置文件中autowire属性设置constructor autowire 。 然后,它尝试将其构造函数的参数与配置文件中的一个bean名称进行匹配和连接。 如果找到匹配,它将注入这些bean。 否则,bean将不会被连线。
例如,如果bean定义在配置文件中由constructor设置为autowire,并且它具有一个带有SpellChecker类型参数的构造函数,则Spring会查找名为SpellChecker的bean定义,并使用它来设置构造函数的参数。 你仍然可以使用“constructor-arg”标签连接剩余的参数。 以下示例将说明该概念。
让我们有一个可用的Eclipse IDE,并按照以下步骤创建一个Spring应用程序 -
脚步 | 描述 |
---|---|
1 | 创建一个名为SpringExample的项目,并在创建的项目中的src文件夹下创建一个包cn.xnip 。 |
2 | 使用Add External JARs选项添加所需的Spring库,如Spring Hello World Example章节中所述。 |
3 | 在cn.xnip包下创建Java类TextEditor , MainApp和MainApp 。 |
4 | 在src文件夹下创建Beans配置文件Beans.xml 。 |
5 | 最后一步是创建所有Java文件和Bean配置文件的内容并运行应用程序,如下所述。 |
这是TextEditor.java文件的内容 -
package cn.xnip;
public class TextEditor {
private SpellChecker spellChecker;
private String name;
public TextEditor( SpellChecker spellChecker, String name ) {
this.spellChecker = spellChecker;
this.name = name;
}
public SpellChecker getSpellChecker() {
return spellChecker;
}
public String getName() {
return name;
}
public void spellCheck() {
spellChecker.checkSpelling();
}
}
以下是另一个依赖类文件SpellChecker.java -
package cn.xnip;
public class SpellChecker {
public SpellChecker(){
System.out.println("Inside SpellChecker constructor." );
}
public void checkSpelling(){
System.out.println("Inside checkSpelling." );
}
}
以下是MainApp.java文件的内容 -
package cn.xnip;
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 -
<?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 = "cn.xnip.TextEditor">
<constructor-arg ref = "spellChecker" />
<constructor-arg value = "Generic Text Editor"/>
</bean>
<!-- Definition for spellChecker bean -->
<bean id = "spellChecker" class = "cn.xnip.SpellChecker"></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 -->
<bean id = "textEditor" class = "cn.xnip.TextEditor"
autowire = "constructor">
<constructor-arg value = "Generic Text Editor"/>
</bean>
<!-- Definition for spellChecker bean -->
<bean id = "SpellChecker" class = "cn.xnip.SpellChecker"></bean>
</beans>
完成源和bean配置文件的创建后,让我们运行应用程序。 如果您的应用程序一切正常,它将打印以下消息 -
Inside SpellChecker constructor.
Inside checkSpelling.