4. 小结
- byName的时候需要保证所有bean的id唯一,并且bean需要和自动注入属性的set方法的值一致
- byType的时候需要保证所有bean的class唯一,并且bean需要和自动注入属性的类型一致
5. 使用注解实现自动装配
jdk1.5支持的注解,Spring2.5就支持注解
- 要使用注解须知:
- 导入约束。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 https://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd"> <!--开启自动注解的支持--> <context:annotation-config/> </beans>
- @Autowired
直接在属性上使用即可,也可以在set方法上使用。
用了之后可以忽略set方法,前提是这个自动装配的属性在IOC(Spring)容器中存在,且符合名字byName
<?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" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop.xsd"> <!--开启自动注解的支持--> <context:annotation-config/> <bean id="cat" class="com.hxl.pojo.Cat"/> <bean id="dog" class="com.hxl.pojo.Dog"/> <bean id="people" class="com.hxl.pojo.People"/> </beans>
- 科普:
@Nullable 字段标记了这个注解,说明这个地段
public class People{ //如果显示定义了Autowired的required属性为false,说明这个对象可以为null,否则不允许为空 @Autowired(required = false) private Cat cat; @Autowired private Dog dog; private String name; }
如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解@Autowired完成的时候,就可以使用@Qualifier(value = “xxx”)来配合@Autowired的使用,指定一个唯一的bean对象注入
- @Resource注解
@Resource(name = "cat2") private Cat cat;
此时会去找xml中的
<bean id="cat2" class="com.hxl.pojo.Cat"/>
- 小结@Autowired和@Resource的区别
- 都是用来自动装配的,都可以放在属性字段上
- @Autowired优先通过byType的方式实现,类型重复的话会按照名字查找。而且必须要求这个对象存在【常用】一般@Autowired和@Qualifier一起用,
- @Resource 默认通过byName的方式实现,如果找不到名字,则通过byType实现。如果两个都找不到的情况下就会报错。【常用】
- 执行顺序不同:@Autowired通过byType的方式实现,@Resource默认通过byName的方式实现