Spring 学习小结

Spring 学习小结

Spring 依赖注入

使用Spring时,我们一直将bean里的属性定义成私有域变量,并配套get、set方法。

public class Boss {     
    private Car car;     
    private Office office;     

    // 省略 get/setter     

    @Override    
    public String toString() {     
        return "car:" + car + "/n" + "office:" + office;     
    }     
}

传统配置Bean: XML 文件

我们在 Spring 容器中将 Office 和 Car 声明为 Bean,并注入到 Boss Bean 中。
下面使用传统 XML 完成这个工作的配置文件 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-2.5.xsd">     
    <bean id="boss" class="com.baobaotao.Boss">     
        <property name="car" ref="car"/>     
        <property name="office" ref="office" />     
    </bean>     
    <bean id="office" class="com.baobaotao.Office">     
        <property name="officeNo" value="002"/>     
    </bean>     
    <bean id="car" class="com.baobaotao.Car" scope="singleton">     
        <property name="brand" value=" 红旗 CA72"/>     
        <property name="price" value="2000"/>     
    </bean>     
</beans>

测试

public class AnnoIoCTest {     

    public static void main(String[] args) {     
        String[] locations = {"beans.xml"};     
        ApplicationContext ctx =      
            new ClassPathXmlApplicationContext(locations);     
        Boss boss = (Boss) ctx.getBean("boss");     
        System.out.println(boss);     
    }     
}

正常工作说明 Spring 容器已经正确完成了 Bean 创建和装配的工作。

注解@Autowired

Spring 2.5 引入了 @Autowired 注释,它可以对类成员变量、方法及构造函数进行标注,完成自动装配的工作。通过 @Autowired的使用来消除 set ,get方法。
1、在applicationContext.xml中加入:

<!-- 该 BeanPostProcessor 将自动对标注 @Autowired 的 Bean 进行注入 -->     
  <bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/>

Spring 通过一个 BeanPostProcessor 对 @Autowired 进行解析,所以要让 @Autowired 起作用必须事先在 Spring 容器中声明 AutowiredAnnotationBeanPostProcessor Bean。
2、修改在原来注入spirng容器中的bean的方法
在域变量上加上标签@Autowired,并且去掉 相应的get 和set方法。

public class Boss {     

    @Autowired    
    private Car car;     

    @Autowired    
    private Office office;     

    …     
}

3、在applicatonContext.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-2.5.xsd">     

    <!-- 该 BeanPostProcessor 将自动起作用,对标注 @Autowired 的 Bean 进行自动注入 -->     
    <bean class="org.springframework.beans.factory.annotation.     
        AutowiredAnnotationBeanPostProcessor"/>     

    <!-- 移除 boss Bean 的属性注入配置的信息 -->     
    <bean id="boss" class="com.baobaotao.Boss"/>     

    <bean id="office" class="com.baobaotao.Office">     
        <property name="officeNo" value="001"/>     
    </bean>     
    <bean id="car" class="com.baobaotao.Car" scope="singleton">     
        <property name="brand" value=" 红旗 CA72"/>     
        <property name="price" value="2000"/>     
    </bean>     
</beans>

这样,当 Spring 容器启动时,AutowiredAnnotationBeanPostProcessor 将扫描 Spring 容器中所有 Bean,当发现 Bean 中拥有 @Autowired 注释时就找到和其匹配(默认按类型匹配)的 Bean,并注入到对应的地方中去。

按照上面的配置,Spring 将直接采用 Java 反射机制对 Boss 中的 car 和 office 这两个私有成员变量进行自动注入。所以对成员变量使用 @Autowired 后,您大可将它们的 setter 方法(setCar() 和 setOffice())从 Boss 中删除。

附:当然,您也可以通过 @Autowired 对方法或构造函数进行标注,如果构造函数有两个入参,分别是 bean1 和 bean2,@Autowired 将分别寻找和它们类型匹配的 Bean,将它们作为 CountryService (Bean1 bean1 ,Bean2 bean2) 的入参来创建 CountryService Bean。

public class Boss {     
    private Car car;     
    private Office office;     

    @Autowired    
    public Boss(Car car ,Office office){     
        this.car = car;     
        this.office = office ;     
    }     

    …     
}

由于 Boss() 构造函数有两个入参,分别是 car 和 office,@Autowired 将分别寻找和它们类型匹配的 Bean,将它们作为 Boss(Car car ,Office office) 的入参来创建 Boss Bean。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值