详解Java的Spring框架下bean的自动装载方式
spring容器可以自动装配相互协作bean之间的关系,这有助于减少对xml配置,而无需编写一个大的基于spring应用程序的较多的<constructor-arg>和<property>元素。
自动装配模式:
有下列自动装配模式,可用于指示spring容器使用自动装配依赖注入。使用<bean/>元素的autowire属性为一个bean定义中指定自动装配模式。
byname模式
这种模式规定由自动装配属性名称。spring容器在外观上自动线属性设置为byname的xml配置文件中的bean。然后,它尝试匹配和接线其属性与配置文件中相同的名称定义的bean。如果找到匹配项,它会注入这些bean,否则,它会抛出异常。
例如,如果一个bean定义设置为自动装配byname的配置文件,它包含aspellchecker属性(即,它有一个 setspellchecker(...)方法),spring就会查找名为拼写检查一个bean定义,并用它来设置该属性。仍然可以使用的<property>标签连线其余属性。下面的例子将说明这个概念。
来创建一个spring应用程序:
这里是texteditor.java文件的内容:
package com.yiibai; 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内容:
package com.yiibai; public class spellchecker { public spellchecker() { system.out.println("inside spellchecker constructor." ); } public void checkspelling() { system.out.println("inside checkspelling." ); } }
以下是mainapp.java文件的内容:
package com.yiibai; 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="com.yiibai.texteditor"> <property name="spellchecker" ref="spellchecker" /> <property name="name" value="generic text editor" /> </bean> <!-- definition for spellchecker bean --> <bean id="spellchecker" class="com.yiibai.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.yiibai.texteditor" autowire="byname"> <property name="name" value="generic text editor" /> </bean> <!-- definition for spellchecker bean --> <bean id="spellchecker" class="com.yiibai.spellchecker"> </bean> </beans>
创建源代码和bean配置文件完成后,让我们运行应用程序。如果一切顺利,这将打印以下信息:
inside spellchecker constructor. inside checkspelling.
bytype模式
式规定由自动装配属性类型。spring容器在外观上autowire属性设置为bytype的xml配置文件中的bean。然后,它尝试匹配和连接一个属性,如果它的类型有完全相同的豆子名称的一个匹配的配置文件。如果找到匹配项,它会注入这些bean,否则,它会抛出异常。
例如,如果一个bean定义设置为自动装配bytype的配置文件,它包含拼写检查类型的aspellchecker属性,春季查找名为拼写检查一个bean定义,并用它来设置该属性。仍然可以使用<property>标签接线其余属性。下面的例子将说明这个概念,会发现和上面的例子没有什么区别,除了xml配置文件已被更改。
同样,来创建一个spring应用程序说明:
这里是texteditor.java文件的内容:
package com.yiibai; 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内容:
package com.yiibai; public class spellchecker { public spellchecker(){ system.out.println("inside spellchecker constructor." ); } public void checkspelling() { system.out.println("inside checkspelling." ); } }
以下是mainapp.java文件的内容:
package com.yiibai; 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="com.yiibai.texteditor"> <property name="spellchecker" ref="spellchecker" /> <property name="name" value="generic text editor" /> </bean> <!-- definition for spellchecker bean --> <bean id="spellchecker" class="com.yiibai.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.yiibai.texteditor" autowire="bytype"> <property name="name" value="generic text editor" /> </bean> <!-- definition for spellchecker bean --> <bean id="spellchecker" class="com.yiibai.spellchecker"> </bean> </beans>
当创建源代码和bean配置文件完成后,让我们运行应用程序。如果一切顺利,这将打印以下信息:
inside spellchecker constructor. inside checkspelling.
由构造函数自动装配
这种模式是非常相似bytype,但它应用于构造器参数。 spring容器在外观上autowire属性被设置xml配置文件中bean的。然后,它尝试匹配和连线它的构造函数的参数与bean名称的配置文件只有一个。如果找到匹配项,它会注入这些bean,否则,它会抛出异常。
例如,如果一个bean定义设置为通过构造配置文件自动装配,它具有与拼写检查类型的参数之一的构造函数,春天寻找一个bean定义namedspellchecker,并用它来设置构造函数的参数。仍然可以使用<constructor-arg>标签连线剩余的参数。下面的例子将说明这个概念。
这里是texteditor.java文件的内容:
package com.yiibai; 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 com.yiibai; public class spellchecker { public spellchecker(){ system.out.println("inside spellchecker constructor." ); } public void checkspelling() { system.out.println("inside checkspelling." ); } }
以下是mainapp.java文件的内容:
package com.yiibai; 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="com.yiibai.texteditor"> <constructor-arg ref="spellchecker" /> <constructor-arg value="generic text editor"/> </bean> <!-- definition for spellchecker bean --> <bean id="spellchecker" class="com.yiibai.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="com.yiibai.texteditor" autowire="constructor"> <constructor-arg value="generic text editor"/> </bean> <!-- definition for spellchecker bean --> <bean id="spellchecker" class="com.yiibai.spellchecker"> </bean> </beans>
创建源代码和bean配置文件完成后,让我们运行应用程序。如果一切顺利,这将打印以下信息:
inside spellchecker constructor. inside checkspelling.
除此之外,还有autodetect和默认方式,这里就不再细讲。
自动装配的局限性:
自动装配最好效果是它始终在一个项目中使用。如果自动装配不一般的使用,它可能会被混淆为开发人员可以使用它来连接只有一个或两个bean定义。不过,自动装配可以显著减少需要指定属性或构造器参数,但你应该使用它们之前考虑自动装配的局限性和缺点。