Spring学习

 

使用Spring2.5的Autowired实现注释型的IOC        使用Spring2.5的新特性——Autowired可以实现快速的自动注入,而无需在xml文档里面添加bean的声明,大大减少了xml文档的维护。(偶喜欢这个功能,因为偶对xml不感冒)。 以下是一个例子:   先编写接口Man:  

  public interface Man {   
  public String sayHello();   
}   



然后写Man的实现类Chinese和American:   

@Service   
public class Chinese implements Man{   
  public String sayHello() {   
  return "I am Chinese!";   
  }   
}   
   
@Service   
public class American implements Man{   
  public String sayHello() {   
  return "I am American!";   
  }   
}   



  @Service注释表示定义一个bean,自动根据bean的类名实例化一个首写字母为小写的bean,例如Chinese实例化为chinese,American实例化为american,如果需要自己改名字则:@Service("你自己改的bean名")。  
  
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"   
  xmlns:context="http://www.springframework.org/schema/context"   
  xsi:schemaLocation="http://www.springframework.org/schema/beans   
  http://www.springframework.org/schema/beans/spring-beans-2.5.xsd   
  http://www.springframework.org/schema/context   
  http://www.springframework.org/schema/context/spring-context-2.5.xsd">   
  <context:annotation-config/>   
  <context:component-scan base-package="testspring.main"/>   
</beans>  


 
在spring的配置文件里面只需要加上<context:annotation-config/>和<context:component-scan base-package="需要实现注入的类所在包"/>,可以使用base-package="*"表示全部的类。  
编写主类测试:   

@Service   
public class Main {   
  @Autowired   
  @Qualifier("chinese")   
  private Man man;   
   
  public static void main(String[] args) {   
  // TODO code application logic here   
  ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml");   
  Main main = (Main) ctx.getBean("main");   
  System.out.println(main.getMan().sayHello());   
  }   
   
  public Man getMan() {   
  return man;   
  }   
}   



  
在Man接口前面标上@Autowired和@Qualifier注释使得Man接口可以被容器注入,当Man接口存在两个实现类的时候必须指定其中一个来注入,使用实现类首字母小写的字符串来注入。否则可以省略,只写@Autowired  
  
**********************  
使用 Spring 2.5 注释驱动的 IoC 功能  
  
注释配置相对于 XML 配置具有很多的优势:  
  
它可以充分利用 Java 的反射机制获取类结构信息,这些信息可以有效减少配置的工作。如使用 JPA 注释配置 ORM 映射时,我们就不需要指定 PO 的属性名、类型等信息,如果关系表字段和 PO 属性名、类型都一致,您甚至无需编写任务属性映射信息——因为这些信息都可以通过 Java 反射机制获取。  
注释和 Java 代码位于一个文件中,而 XML 配置采用独立的配置文件,大多数配置信息在程序开发完成后都不会调整,如果配置信息和 Java 代码放在一起,有助于增强程序的内聚性。而采用独立的 XML 配置文件,程序员在编写一个功能时,往往需要在程序文件和配置文件中不停切换,这种思维上的不连贯会降低开发效率。  
因此在很多情况下,注释配置比 XML 配置更受欢迎,注释配置有进一步流行的趋势。Spring 2.5 的一大增强就是引入了很多注释类,现在您已经可以使用注释配置完成大部分 XML 配置的功能。在这篇文章里,我们将向您讲述使用注释进行 Bean 定义和依赖注入的内容。  
  
原来我们是怎么做的  
  
在使用注释配置之前,先来回顾一下传统上是如何配置 Bean 并完成 Bean 之间依赖关系的建立。下面是 3 个类,它们分别是 Office、Car 和 Boss,这 3 个类需要在 Spring 容器中配置为 Bean:  
  
Office 仅有一个属性:  
  
  
清单 1. Office.java   

package com.baobaotao;   
public class Office {   
  private String officeNo =”001”;   
   
  //省略 get/setter   
   
  @Override   
  public String toString() {   
  return "officeNo:" + officeNo;   
  }   
}   


  
Car 拥有两个属性:  
清单 2. Car.java   

package com.baobaotao;   
   
public class Car {   
  private String brand;   
  private double price;   
  // 省略 get/setter   
  @Override   
  public String toString() {   
  return "brand:" + brand + "," + "price:" + price;   
  }   
}   


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

package com.baobaotao;   
public class Boss {   
  private Car car;   
  private Office office;   
  // 省略 get/setter   
  @Override   
  public String toString() {   
  return "car:" + car + "\n" + "office:" + office;   
  }   
}   


我们在 Spring 容器中将 Office 和 Car 声明为 Bean,并注入到 Boss Bean 中:下面是使用传统 XML 完成这个工作的配置文件 beans.xml:  
清单 4. beans.xml 将以上三个类配置成 Bean   

<?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>   


当我们运行以下代码时,控制台将正确打出 boss 的信息:  
 
清单 5. 测试类:AnnoIoCTest.java   

import org.springframework.context.ApplicationContext;   
import org.springframework.context.support.ClassPathXmlApplicationContext;   
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 进行成员变量自动注入的代码:  
清单 6. 使用 @Autowired 注释的 Boss.java   
   

package com.baobaotao;   
import org.springframework.beans.factory.annotation.Autowired;   
   
public class Boss {   
   
  @Autowired   
  private Car car;   
   
  @Autowired   
  private Office office;   
   
  …   
}   


Spring 通过一个 BeanPostProcessor 对 @Autowired 进行解析,所以要让 @Autowired 起作用必须事先在 Spring 容器中声明 AutowiredAnnotationBeanPostProcessor Bean。  
清单 7. 让 @Autowired 注释工作起来   

<?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 对方法或构造函数进行标注,来看下面的代码:  
清单 8. 将 @Autowired 注释标注在 Setter 方法上   

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。而下面的使用方法则对构造函数进行标注:  
 
清单 9. 将 @Autowired 注释标注在构造函数上    
  

package com.baobaotao;   
   
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。  

  
当候选 Bean 数目不为 1 时的应对方法  
  
在默认情况下使用 @Autowired 注释进行自动注入时,Spring 容器中匹配的候选 Bean 数目必须有且仅有一个。当找不到一个匹配的 Bean 时,Spring 容器将抛出 BeanCreationException 异常,并指出必须至少拥有一个匹配的 Bean。我们可以来做一个实验:  
 
清单 10. 候选 Bean 数目为 0 时   

<?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 class="org.springframework.beans.factory.annotation.   
  AutowiredAnnotationBeanPostProcessor"/>   
   
  <bean id="boss" class="com.baobaotao.Boss"/>   
   
  <!-- 将 office Bean 注释掉 -->   
  <!-- <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>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值