Spring中设置创建的bean实例是单实例还是多实例
【摘要】
在 Spring 里面,默认情况下,bean 是单实例对象
public class Student {
}
12
<bean id="student" class="iocbean.b...
在 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 方法时候创建多实例对象
文章来源: blog.csdn.net,作者:Mr.Yushiwen,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/MrYushiwen/article/details/110876111
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)