XML实现自动装配
- 自动装配式Spring满足bean依赖的一种方式
- Spring会在上下文中自动寻找,并自动给bean装配属性
在Spring中有三种装配方式
1.在xml中显示的配置
2.在java中显示的配置
3.隐式的自动装配bean
byName
<!--
byName:会自动在容器上下文中查找,和自己对象set方法后面的值对应的beanid
-->
<bean id="people" class="com.cbbpp.pojo.People" autowire="byName">
<property name="name" value="小王"/>
</bean>
byType
<!--
byType:会自动在容器上下文中查找,和自己对象属性类型相同的bean
-->
<bean id="people" class="com.cbbpp.pojo.People" autowire="byType">
<property name="name" value="小王"/>
</bean>
小结:
- byName的时候,需要保证所有bean的id唯一,并且这个bean需要和自动注入的属性的set方法的值一致
- byType的时候,需要保证所有bean的class唯一,并且这个bean需要和自动注入的属性的set方法的值一致
使用注解实现自动装配
jdk1.5已经支持注解,Spring2.5开始支持注解
The introduction of annotation-based configuration raised the question of whether this approach is “better” than XML.
要使用注解须知:
1.导入约束:context约束
2.配置注解的支持: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
直接在pojo的属性上使用即可,也可以在set方法上使用
使用Autowired我们可以不用编写Set方法,前提是你这个自动装配的属性在IOC(Spring)容器中存在,且符合名字bynamea
拓展:
1.当我们使用@Autowired(required=false)的时候,其含义等价于@Nullable,就是使改属性可以为空值null,否则不允许为空值
即
private String name;
@Autowired(required=false)
private Cat cat;
@Autowired
private Dog dog;
等价于
public void people(@Nullable String name){}
2.当@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解@Autowired完成的时候【eg:<bean id="dog22" class="com.cbbpp.pojo.Dog"/>和<bean id="dog222" class="com.cbbpp.pojo.Dog"/>】,我们可以使用@Qualifier(value="xxx")去配置@Autowired的使用,指定一个唯一的bean对象注入
public class People {
private String name;
@Autowired(required=false)
private Cat cat;
@Autowired
@Qualifier(value = "dog22")
private Dog dog;
}
小结:
@Resource和@Autowired的区别:
- 都是自动装配的,都可以放在属性字段上
- @Autowired通过byType的方式实现
- @Resource默认通过byname的方式实现,如果找不到名字,则通过byType实现,如果两个都找不到就保存