spring 自动扫描

Boss 拥有 Office 和 Car 类型的两个属性:  
 
 
清单 3. Boss.java

view plaincopy to clipboardprint?
package com.baobaotao;     
    
public class Boss {     
    private Car car;     
    private Office office;     
    
    // 省略 get/setter     
    
    @Override    
    public String toString() {     
        return "car:" + car + "\n" + "office:" + office;     
    }     
}    
package com.baobaotao;  
 
public class Boss {  
    private Car car;  
    private Office office;  
 
    // 省略 get/setter  
 
    @Override 
    public String toString() {  
        return "car:" + car + "\n" + "office:" + office;  
    }  
}   
   
  System.out.println必须实现toString方法
 
我们在 Spring 容器中将 Office 和 Car 声明为 Bean,并注入到 Boss Bean 中:下面是使用传统 XML 完成这个工作的配置文件 beans.xml:  
 
 
清单 4. beans.xml 将以上三个类配置成 Bean  
                  
view plaincopy to clipboardprint?
<?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>    
<?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>  

2   @Autowired

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

在applicationContext.xml中加入:

  1. <!-- 该 BeanPostProcessor 将自动对标注 @Autowired 的 Bean 进行注入 -->     
  2.   <bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/> 
修改在原来注入spirng容器中的bean的方法。 
     在域变量上加上标签@Autowired,并且去掉 相应的get 和set方法


清单 6. 使用 @Autowired 注释的 Boss.java  
                  
view plaincopy to clipboardprint?
package com.baobaotao;     
import org.springframework.beans.factory.annotation.Autowired;     
    
public class Boss {     
    
    @Autowired    
    private Car car;     
    
    @Autowired    
    private Office office;     
    
    …     
}    
package com.baobaotao;  
import org.springframework.beans.factory.annotation.Autowired;  
 
public class Boss {  
 
    @Autowired 
    private Car car;  
 
    @Autowired 
    private Office office;  
 
    …  
}  

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

package com.baobaotao;     
        
    public class Boss {     
        private Car car;     
        private Office office;     
        
         @Autowired    
        public void setCar(Car car) {     
            this.car = car;     
        }     
          
        @Autowired    
        public void setOffice(Office office) {     
            this.office = office;     
    

@Autowired 将查找被标注的方法的入参类型的 Bean,并调用方法自动注入这些 Bean。而下面的使用方法则对构造函数进行标注:  

  1. package com.baobaotao;     
  2.     
  3. public class Boss {     
  4.     private Car car;     
  5.     private Office office;     
  6.       
  7.     @Autowired    
  8.     public Boss(Car car ,Office office){     
  9.         this.car = car;     
  10.         this.office = office ;     
  11.     }     
  12.       
  13.     …     
  14. }     
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值