@Autowired
- 默认情况下必须要求依赖对象必须存在,如果要允许null值,可以设置它的
required
属性为false
,如:
@Autowired(required=false)
如果需要使用名称来来装配,可以搭配@Qualifier
@Autowired() @Qualifier("baseDao")
private BaseDao baseDao;
@Resource
- 默认按照名称进行装配,名称可以通过
name
属性进行指定,如果没有指定name
属性,当注解写在字段上时,默认取字段名,按照名称查找,如果注解写在setter
方法上默认取属性名进行装配。当找不到与名称匹配的bean
时才按照类型进行装配。但是需要注意的是,如果name
属性一旦指定,就只会按照名称进行装配
@Resource(name="baseDao")
private BaseDao baseDao;
@Resource
PersonDao p; // 在xml中查找id为p的bean
相同点
@Autowired
与@Resource
都可以用来装配bean
,都可以写在字段上,或写在setter
方法上
不同点
-
@Autowired
是Spring框架提供的,@Resource
是由JDK提供的
org.springframework.beans.factory.annotation.Autowired
javax.annotation.Resource
- 使用
@Autowired
时,需要Spring
配置文件中开启注解
<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=”XX.XX”/>
</beans>
以上两项配置都可以实现自动注入部分processor的功能,包括:
AutowiredAnnotationBeanPostProcessor
CommonAnnotationBeanPostProcessor
PersistenceAnnotationBeanPostProcessor
RequiredAnnotationBeanPostProcessor
对于@Resource
,名称可以通过的name
属性指定,如果没有指定name
属性,当注解标注在字段上,即默认取字段的名称作为bean
名称寻找依赖对象,当注解标注在属性的setter
方法上,即默认取属性名作为bean
名称寻找依赖对象。