Bean的作用域scope【理解】
- 单例模式(Spring默认机制)–单线程一般用这个
<bean id="user" class="com.xi.pojo.User" scope="singleton"/>
- 原型模式:每次从容器中get的时候都会产生一个新对象(浪费资源,尽量都使用单例)–多线程可能用这个
<bean id="user" class="com.xi.pojo.User" scope="protptype"/>
- 其余的request、session、application,这些只能在web开发中使用!
Bean的自动装配
之前都是手动装配,自动装配可以实现我不设置也能进行装配。
自动装配是Spring满足bean依赖的一种方式!
Spring会在上下文中自动寻找,并自动给bean装配属性。
在Spring中有三种装配的方式
- 在xml中显示的配置
- 在java中显示配置
- 隐式的自动装配bean
测试
package com.xi.pojo;
public class Dog {
public void shout(){
System.out.println("wang~");
}
}
package com.xi.pojo;
public class Cat {
public void shout(){
System.out.println("miao~");
}
}
package com.xi.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
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<bean id="cat" class="com.xi.pojo.Cat" />
<bean id="dog" class="com.xi.pojo.Dog" />
<bean id="people" class="com.xi.pojo.People" >
<property name="name" value="金角大王"/>
<property name="dog" ref="dog"/>
<property name="cat" ref="cat"/>
</bean>
</beans>
import com.xi.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 = context.getBean("people", People.class);
people.getDog().shout();
people.getCat().shout();
}
}
byName自动装配
byName:会自动在容器上下文中查找,和自己对象set方法后面的值对应的beanId;
注意点:需要保证所有bean的id唯一,并且这个bean需要和自动注入的属性的set方法的值一致。
<?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
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<bean id="cat" class="com.xi.pojo.Cat" />
<bean id="dog" class="com.xi.pojo.Dog" />
<bean id="people" class="com.xi.pojo.People" autowire="byName">
<property name="name" value="金角大王"/>
</bean>
</beans>
byType自动装配
byType:会自动在容器上下文中查找,和自己对象属性类型相同的bean;
注意点:需要保证所有bean的class唯一,并且这个bean需要和自动注入的属性的类型一致。
在这一方法中,id可以省略。
<?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
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<bean id="cat" class="com.xi.pojo.Cat" />
<bean id="dog111" class="com.xi.pojo.Dog" />
<bean id="people" class="com.xi.pojo.People" autowire="byType">
<property name="name" value="金角大王"/>
</bean>
</beans>
使用注解实现自动装配
使用注解须知:
- 导入约束: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
@Autowired默认通过byType的方式实现
直接在属性上使用即可,当然也可以在set方法上使用。
使用Autowired 我们可以不用编写Set方法了,前提是这个自动装配的属性在IOC容器中存在,且符合名字即byName.
属性改写
//如果显示定义了Autowired的required属性为false,说明这个对象可以为null,否则不允许为空
@Autowired(required = false)
private Cat cat;
@Autowired
private Dog dog;
private String name;
@Qualifier
@Autowired
@Qualifier(value = "dog222")
private Dog dog;
如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解【@Autowired】完成的时候,我们可以使用@Qualifier(value=“xxx”)去配置@Autowired的使用,指定一个唯一的bean对象注入!
@Resource
@Resource
private Cat cat;
@Resource
private Dog dog;
private String name;
@Resource默认通过byName的方式实现,如果找不到名字,则通过byType实现。如果两个都找不到的情况下,就报错。