Spring中设置创建的bean实例是单实例还是多实例
程序员文章站
2022-03-26 19:34:30
在 Spring 里面,默认情况下,bean 是单实例对象public class Student {} public class DemoTest { @Test public void test1(){ ApplicationContext context = new ClassPathXml...
在 Spring 里面,默认情况下,bean 是单实例对象
public class Student {
}
<bean id="student" class="iocbean.byxml.example.Student">
</bean>
public class DemoTest {
@Test
public void test1(){
ApplicationContext context = new ClassPathXmlApplicationContext("iocbean/byxml/example/bean.xml");
Student student1 = context.getBean("student", Student.class);
Student student2 = context.getBean("student", Student.class);
System.out.println(student1);
System.out.println(student2);
}
}
结果:(可以看到两个对象地址值相同)
iocbean.byxml.example.Student@5bd03f44
iocbean.byxml.example.Student@5bd03f44
Process finished with exit code 0
在 spring 配置文件 bean 标签里面有属性(scope)用于设置单实例还是多实例
- 默认值,singleton,表示是单实例对象
- prototype,表示是多实例对象
<bean id="student" class="iocbean.byxml.example.Student" scope="prototype">
</bean>
结果:(可以看到两个对象地址值不相同)
iocbean.byxml.example.Student@470f1802
iocbean.byxml.example.Student@63021689
Process finished with exit code 0
singleton 和 prototype创建实例对象的区别:
- 设置 scope 值是 singleton 时候,加载 spring 配置文件时候就会创建单实例对象
- 设置 scope 值是 prototype 时候,不是在加载 spring 配置文件时候创建对象,在调用 getBean 方法时候创建多实例对象
本文地址:https://blog.csdn.net/MrYushiwen/article/details/110876111