文章目录
基本概念
自动装配:
- 自动装配是Spring满足bean依赖的一种方式。
- Spring会在上下文中自动寻找,并自动给bean装配属性。
在spring中有三种装配方式:
- 在xml中显式的配置
- 在Java中显式配置
- 隐式的自动装配bean
环境测试
package com.xiao.pojo;
public class Cat {
public void shout(){
System.out.println("喵喵");
}
}
package com.xiao.pojo;
public class Dog {
public void shout(){
System.out.println("汪汪");
}
}
package com.xiao.pojo;
public class People {
private Cat cat;
private Dog dog;
private String name;
public Cat getCat() {
return cat;
}
public void setCat(Cat cat) {
this.cat = cat;
}
public Dog getDog() {
return dog;
}
public void setDog(Dog dog) {
this.dog = dog;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "People{" +
"cat=" + cat +
", dog=" + dog +
", name='" + name + '\'' +
'}';
}
}
<?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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="cat" class="com.xiao.pojo.Cat"/>
<bean id="dog" class="com.xiao.pojo.Dog"/>
<bean id="people" class="com.xiao.pojo.People">
<property name="name" value="吕布"/> <!-- value代表的引入这个对象名字的字符串-->
<property name="cat" ref="cat"/>
<property name="dog" ref="dog"/> <!-- ref代表的是引用这个对象-->
</bean>
</beans>
import com.xiao.pojo.People;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class MyTest {
@Test
public void test1(){
ApplicationContext Context = new ClassPathXmlApplicationContext("beans.xml");
People people = (People) Context.getBean("people");
//与People people = context.getBean("people",people.class);
people.getDog().shout();
people.getCat().shout();
}
}
byName自动装配
<!--
byName:会自动在容器上下文中查找,和自己对象set方法后面的值对应的beanid
-->
<bean id="people" class="com.xiao.pojo.People" autowire="byName">
<property name="name" value="吕布"/> <!-- value代表的引入这个对象名字的字符串-->
</bean>
byType自动装配
<?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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean class="com.xiao.pojo.Cat"/>
<bean class="com.xiao.pojo.Dog"/>
<!--
byName:会自动在容器上下文中查找,和自己对象set方法后面的值对应的beanid,比如在People实体类中存在setDog,setCat方法
byType:会自动在容器上下文中查找,和自己对象属性类型相同的bean
-->
<bean id="people" class="com.xiao.pojo.People" autowire="byType">
<property name="name" value="吕布"/> <!-- value代表的引入这个对象名字的字符串-->
</bean>
</beans>
小结:
- byname的时候,需要保证所有的bean的id唯一,并且这个bean需要和自动注入的属性set方法的值一致。
- byType的时候,需要保证所有的bean的class唯一,并且这个bean需要和自动注入的属性的类型一致。
使用注解实现自动装配
- @Autowired:自动装配通过类型、名字。如果Autowired不能唯一自动装配上属性,则需要通过@Qualifier(value=“xxxx”)来显式指定
- @Qualifier:显式指定装配对象
- @Nullable:字段标记了该注解,说明字段可以为空。
- @Resource:自动装配通过名字、类型。
注意事项:
- 导入约束,,,context约束
- 配置注解的支持
<?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方式上使用!
@Autowired
private Cat cat;
@Autowired
private Dog dog;
private String name;
如果显式定义了@Autowired(required = false)
,则说明这个对象可以为null,否则不可以为空。
@Qualifier
当在xml文件中存在多个bean时,有时@Autowired根据名字和类型都无法匹配到时,可以用@Qualifier(value=“xxxx”)指定一个唯一的bean对象注入
假设有<bean id="cat111" class="com.xiao.pojo.Cat"/>
<bean id="cat222" class="com.xiao.pojo.Cat"/>
<bean id="cat333" class="com.xiao.pojo.Cat"/>
可以通过@Qualifier(value="cat111")
显式装配
@Resource
public class People {
@Resource(name = "cat")
private Cat cat;
@Resource
private Dog dog;
private String name;
@Resource
与@Autowired
的区别:
- 都是用来自动装配,都可以放在属性的字段上
-
@Autowired
通过byType的方式实现,而且这个对象必须存在。 -
@Resource
默认通过byName的方式实现,如果找不到名字,则通过byType实现。如果两个都找不到的情况下,就会报错!可以理解为@Resource
是@Autowired
与@Qualifier
的集合体。 - 执行顺序不同:
@Autowired
通过byType的方式实现;@Resource
默认通过byName的方式实现