<bean id="customer" class="com.zyiz.netmon.Customer" autowire="byName" />
package com.zyiz.netmon; public class Customer { private Person person; public Customer(Person person) { this.person = person; } public void setPerson(Person person) { this.person = person; } //... }
package com.zyiz.netmon; public class Person { //... }
<bean id="customer" class="com.zyiz.netmon.Customer"> <property name="person" ref="person" /> </bean> <bean id="person" class="com.zyiz.netmon.Person" />
按属性名称自动装配。在这种情况下,由于对“person” bean的名称是相同于“customer” bean 的属性(“person”)名称,所以,Spring会自动通过setter方法将其装配 – “setPerson(Person person)“.
<bean id="customer" class="com.zyiz.netmon.Customer" autowire="byName" /> <bean id="person" class="com.zyiz.netmon.Person" />
查看完整的示例 – Spring按名称自动装配
通过按属性的数据类型自动装配Bean。在这种情况下,由于“Person” bean中的数据类型是与“customer” bean的属性(Person对象)的数据类型一样的,所以,Spring会自动通过setter方法将其自动装配。– “setPerson(Person person)“.
<bean id="customer" class="com.zyiz.netmon.Customer" autowire="byType" /> <bean id="person" class="com.zyiz.netmon.Person" />
查看完整的示例 – Spring通过类型自动装配
通过构造函数参数的数据类型按属性自动装配Bean。在这种情况下,由于“person” bean的数据类型与“customer” bean的属性(Person对象)的构造函数参数的数据类型是一样的,所以,Spring通过构造方法自动装配 – “public Customer(Person person)“.
<bean id="customer" class="com.zyiz.netmon.Customer" autowire="constructor" /> <bean id="person" class="com.zyiz.netmon.Person" />
查看完整的示例 – Spring通过构造方法自动装配
如果找到默认的构造函数,则使用“构造方法”; 否则,使用“byType”。在这种情况下,由于有默认的构造函数在“Customer”类,所以,Spring通过构造方法自动装配 – “public Customer(Person person)“.
<bean id=" customer"="" class="com.zyiz.netmon.Customer" autowire="autodetect" >="" <bean="" id="person" ><="" pre=""> Spring通过构造方法自动装配 5. Auto-Wiring ‘autodetect’ 如果找到默认的构造函数,则使用“构造方法”; 否则,使用“byType”。在这种情况下,由于有默认的构造函数在“Customer”类,所以,Spring通过构造方法自动装配 – “public Customer(Person person)“. <bean id=" customer"="" class="com.zyiz.netmon.Customer" autowire="autodetect" >="" <bean="" id="person" ><="" pre="">查看完整的示例 – Spring按AutoDetect自动装配成功. 注 这是一件好事,这两个auto-wire’ 和 ‘dependency-check’ 相结合,以确保属性始终自动装配成功。 <bean id="customer" class="com.zyiz.netmon.Customer" autowire="autodetect" dependency-check="objects /> <bean id="person" class="com.zyiz.netmon.Person" /> 结论 在我看来,Spring ‘auto-wiring’ 以极大的成本做出更快开发效率 - 它增加了对整个 bean 配置文件复杂性,甚至不知道哪些bean将自动装配哪个Bean。 在实践中,我更顷向手动关联创建,它始终是干净,也很好地工作,或者使用 @Autowired 注解,这是更加灵活和建议。