使用注解装配:
从spring2.5开始,Spring启用了使用注解自动装配Bean的属性,使用注解方式自动装配与在XML中使用 autowire 属性自动装配并没有太大区别,但是使用注解方式允许更细粒度的自动装配。
Spring容器默认禁用注解装配。所以,在使用基于注解的自动装配前,需要在Spring配置中启用它,最简单的启用方式是使用spring的context命名空间配置中的 <context:annotation-config>元素,如下所示:
<?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-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> <context:annotation-config /> <!-- bean declarations go here --> </beans>
<context:annotation-config>元素告诉Spring我们打算使用基于注解的自动装配,一旦配置完成,我们就可以对代码添加注解,标识Spring应该为属性,方法和构造器进行自动装配。
Spring3支持几种不同的用于自动装配的注解:
第一种:Spring自带的@Atutowired注解;
第二种:JSR-330的@Inject注解;
第三种:JSR-250的@Resource注解。
1.使用@Atutowired注解
使用@Atutowired注解标注setter方法:
@Autowired public void setInstrument(Instrument instrument) { this.instrument = instrument; }
当Spring发现对setInstrument()方法使用了@Atutowired注解时,Spring会尝试对该方法进行byType自动装配。
@Atutowired注解有趣的地方在于,不仅可以使用它标注setter方法,还可以标注需要自动装配的Bean引用的任意方法:
@Atutowired注解标注普通方法:
@Autowired public void heresYourInstrument(Instrument instrument) { this.instrument = instrument; }
@Atutowired注解标注构造器:
@Autowired public Instrumentalist(Instrument instrument) { this.instrument = instrument; }
当对构造器进行标注时,@Atutowired注解当创建Bean时,即使在Spring XML中没有使用 <constructor-arg>元素配置bean,该构造器也需要进行自动装配。
@Atutowired注解标直接标注属性,并删除setter方法:
@Autowired private Instrument instrument;
@Atutowired不会受限于private关键字。即使instrument属性是私有的实例变量。
@Atutowired的受限在于如果没有找到匹配的bean,或者存在多个匹配的Bean,庆幸的是这两种场景都有相应的解决办法。
解决没有找到匹配的bean的方式:可选的自动装配
通过设置@Atutowired的required属性为false来配置自动装配是可选的。如下:
@Autowired(required=false) private Instrument instrument;
在上面代码中,Spring尝试装配instrument属性,但是如果没有找到与之匹配的类型为Instrument的Bean,应用就不会发生任何问题,而instrument属性的值会设置为null。
需要注意的是required虽然可以用于@Atutowired注解所使用的任意的地方,但是当使用构造器装配时,只有一个构造器可以将@Atutowired的required属性设置为true。其他使用@Atutowired注解所标注的构造器只能将required属性设置为false,此外,当使用@Atutowired标注多个构造器时,Spring就会从所有满足装配条件的构造器中选择入参最多的那个构造器。
解决在多个匹配的Bean的方式:限定歧义性的依赖
为了帮助@Atutowired鉴别出哪一个bean才是我们所需要的,可以配合使用Spring的 @Qualifier注解,如下:
@Autowired @Qualifier("guitar") private Instrument instrument;
在上面的代码中,即使有其他的bean也可以装配到instrument属性中,但我们可以使用@Qualifier来明确指定名为guitar的Bean。
@Qualifier注解真正的缩小了自动装配挑选候选Bean的范围。还可以通过在Bean上直接使用qualifier来缩小范围,如下所示:
<bean class="com.springinaction.springidol.Guitar"> <qualifier value="stringed" /> </bean>
除了可以在XML中指定qualifier,还可以使用@Qualifier注解来标注Guitar吉他类,如下所示:
@Qualifier("stringed") public class Guitar implements Instrument { ... }
创建自定义注解(省略)
2. JSR-330的@Inject注解
3. JSR-250的@Resource注解