Spring自动绑定技术总结

[b]1.概念介绍:[/b][b][color=darkred]这些概念可以参考开发参考手册,可以访问:[/color][/b][url]http://doc.javanb.com/spring-framework-reference-zh-2-0-5/ch03s03.html#beans-factory-autowire[/url]
Spring IoC容器可以自动装配(autowire)相互协作bean之间的关联关系。因此,如果可能的话,可以自动让Spring通过检查BeanFactory中的内容,来替我们指定bean的协作者(其他被依赖的bean)。由于autowire可以针对单个bean进行设置,因此可以让有些bean使用 autowire,有些bean不采用。autowire的方便之处在减少或者消除属性或构造器参数的设置,这样可以给我们的配置文件减减肥! 在xml配置文件中,autowire一共有五种类型,可以在<bean/>元素中使用autowire属性指定:
[b]a.no[/b]
不使用自动装配。必须通过ref元素指定依赖,这是默认设置。由于显式指定协作者可以使配置更灵活、更清晰,因此对于较大的部署配置,推荐采用该设置。而且在某种程度上,它也是系统架构的一种文档形式。
[b]b.byName[/b]
根据属性名自动装配。此选项将检查容器并根据名字查找与属性完全一致的bean,并将其与属性自动装配。例如,在bean定义中将autowire设置为by name,而该bean包含master属性(同时提供setMaster(..)方法),Spring就会查找名为master的bean定义,并用它来装配给master属性。
[b]c.byType[/b]
如果容器中存在一个与指定属性类型相同的bean,那么将与该属性自动装配。如果存在多个该类型的bean,那么将会抛出异常,并指出不能使用byType方式进行自动装配。若没有找到相匹配的bean,则什么事都不发生,属性也不会被设置。如果你不希望这样,那么可以通过设置dependency-check="objects"让Spring抛出异常。
[b]d.constructor[/b]
与byType的方式类似,不同之处在于它应用于构造器参数。如果在容器中没有找到与构造器参数类型一致的bean,那么将会抛出异常。
[b]e.autodetect[/b]
通过bean类的自省机制(introspection)来决定是使用constructor还是byType方式进行自动装配。如果发现默认的构造器,那么将使用byType方式。
2.举例:
这里一个Shape 类依赖一个Circle 类,模拟bean之间的依赖关系,并通过设定autowire属性来自动绑定协助者。
a. Shape.java
package com.cn.autowiring;

public class Shape {
private Circle circle;

public Shape() {

}

public Shape(Circle circle) {
this.circle = circle;
}

public void setCircle(Circle circle) {
this.circle = circle;
}

public Circle getCircle() {
return circle;
}

}

b.Circle.java
package com.cn.autowiring;

public class Circle {

private String center;

private int radio;

public String getCenter() {
return center;
}

public void setCenter(String center) {
this.center = center;
}

public int getRadio() {
return radio;
}

public void setRadio(int radio) {
this.radio = radio;
}

}

c.shape-beans.xml
<?xml version="1.0" encoding="gbk"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">

<beans>

<bean id="noAutoWiring" class="com.cn.autowiring.Shape"
autowire="no">
<property name="circle" ref="circle"></property>
</bean>

<bean id="getCircleByName" class="com.cn.autowiring.Shape"
autowire="byName">
</bean>

<bean id="getCircleByType" class="com.cn.autowiring.Shape"
autowire="byType">
</bean>

<bean id="getCircleCst" class="com.cn.autowiring.Shape"
autowire="constructor">
</bean>

<bean id="getCircleAdt" class="com.cn.autowiring.Shape"
autowire="autodetect">
</bean>

<bean id="circle" class="com.cn.autowiring.Circle">
<property name="center" value="center"></property>
<property name="radio" value="10"></property>
</bean>


</beans>

d.测试
package com.cn.autowiring;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class TestAutoWiring {
public static void main(String[] args) {
ApplicationContext ctx = new ClassPathXmlApplicationContext(
"shape-beans.xml");

Shape shape = (Shape) ctx.getBean("noAutoWiring");
System.out.println("noAutoWiring : " + shape.getCircle().getCenter()
+ " " + shape.getCircle().getRadio());

Shape shape1 = (Shape) ctx.getBean("getCircleByName");
System.out.println("getCircleByName: " + shape1.getCircle().getCenter()
+ " " + shape1.getCircle().getRadio());

Shape shape2 = (Shape) ctx.getBean("getCircleByType");
System.out.println("getCircleByType: " + shape2.getCircle().getCenter()
+ " " + shape2.getCircle().getRadio());

Shape shape3 = (Shape) ctx.getBean("getCircleCst");
System.out.println("getCircleCst: " + shape3.getCircle().getCenter()
+ " " + shape3.getCircle().getRadio());

Shape shape4 = (Shape) ctx.getBean("getCircleAdt");
System.out.println("getCircleAdt: " + shape4.getCircle().getCenter()
+ " " + shape4.getCircle().getRadio());

}
}

e.运行结果:
[quote]noAutoWiring : center 10
getCircleByName: center 10
getCircleByType: center 10
getCircleCst: center 10
getCircleAdt: center 10[/quote]
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值