以下内容引用自:
当容器调用带有一组参数的类构造函数时,基于构造函数的DI就完成了,其中每个参数代表一个对其他类的依赖。
例子:
pom.xml:
4.0.0 com.jsoft.testspring testconstructor 0.0.1-SNAPSHOT jar testconstructor http://maven.apache.org UTF-8 junit junit 3.8.1 test org.springframework spring-core 4.1.4.RELEASE org.springframework spring-context 4.1.4.RELEASE
SpellChecker.java:
package com.jsoft.testspring.testconstructor;public class SpellChecker { public SpellChecker(){ System.out.println("SpellChecker无参数构造函数初始化"); } public void checkSpelling(){ System.out.println("SpellChecker检查方法"); }}
TextEditor.java:
package com.jsoft.testspring.testconstructor;public class TextEditor { private SpellChecker spellChecker; public TextEditor(SpellChecker spellChecker){ System.out.println("TextEditor有参数构造函数初始化"); this.spellChecker = spellChecker; } public void spellCheck() { this.spellChecker.checkSpelling(); } }
beans.xml:
这里直接采用<constructor>节点指定TextEditor构造函数的参数。
App.java:
package com.jsoft.testspring.testconstructor;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;/** * Hello world! * */public class App { public static void main( String[] args ) { ApplicationContext applicationContext = new ClassPathXmlApplicationContext("beans.xml"); TextEditor textEditor = (TextEditor)applicationContext.getBean("textEditor"); textEditor.spellCheck(); }}
运行结果:
构造函数参数解析:
如果存在不止一个参数时,当把参数传递给构造函数时,可能会存在歧义。要解决这个问题,那么构造函数的参数在bean定义中的顺序,就是把这些参数提供给适当的构造函数参数的顺序对应上就可以了。考虑下面的类:
package x.y;public class Foo { public Foo(Bar bar, Baz baz) { // ... }}
下述配置文件是能正常运行的:
只要把配置文件参数的顺序对应上构造函数参数的顺序即可。
让我们再考虑一下我们传递给构造函数不同类型的位置。参考下面的类:
package x.y;public class Foo { public Foo(int year, String name) { // ... }}
如果你使用type属性显式的指定了构造函数参数的类型,容器也可以使用与简单类型匹配的类型。例如:
最后,最好的传递构造函数参数的方式,是使用index属性来显式的指定构造函数参数的索引。下面是基于索引为0的例子,如下所示:
测试工程: