时间:2021-05-19
bean的作用范围:
可以通过scope属性进行设置:
测试:
<!-- 默认是单例的(singleton)--><bean id="human" class="com.entity.Human"></bean><bean id="human" class="com.entity.Human" scope="singleton"></bean>@Test public void test(){ //通过ClassPathXmlApplicationContext对象加载配置文件方式将javabean对象交给spring来管理 ApplicationContext applicationContext=new ClassPathXmlApplicationContext("bean.xml"); //获取Spring容器中的bean对象,通过id和类字节码来获取 Human human = applicationContext.getBean("human", Human.class); Human human1 = applicationContext.getBean("human", Human.class); System.out.println(human==human1); }结果:
将scope属性设置为prototype时
<bean id="human" class="com.entity.Human" scope="prototype"></bean>结果:
singleton和prototype的区别
当设置为prototype时
当设置为singleton时
bean对象的生命周期
单例对象:
测试:
先设置属性init-method和destroy-method,同时在person类中写入两个方法进行输出打印
测试类:
@Test public void test(){ //通过ClassPathXmlApplicationContext对象加载配置文件方式将javabean对象交给spring来管理 ClassPathXmlApplicationContext Context=new ClassPathXmlApplicationContext("bean.xml");// //获取Spring容器中的bean对象,通过id和类字节码来获取 Person person = Context.getBean("person", Person.class); //销毁容器 Context.close(); }结果:
总结:单例对象和容器生命周期相同
当属性改为prototype多例时
测试类:
@Test public void test(){ //通过ClassPathXmlApplicationContext对象加载配置文件方式将javabean对象交给spring来管理 ClassPathXmlApplicationContext Context=new ClassPathXmlApplicationContext("bean.xml");// //获取Spring容器中的bean对象,通过id和类字节码来获取 Person person = Context.getBean("person", Person.class); //销毁容器 Context.close(); }结果:
总结:由于Spring容器不知道多例对象什么时候使用,什么时候能用完,只有我们自己知道,因此它不会轻易的把对象销毁,它会通过java垃圾回收器回收对象
到此这篇关于SpringIOC容器中bean的作用范围和生命周期的文章就介绍到这了,更多相关SpringIOC容器bean作用范围和生命周期内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
1.SpringIOC容器可以管理bean的生命周期,Spring允许在bean生命周期内特定的时间点执行指定的任务。2.SpringIOC容器对bean的生命
IoC容器负责管理容器中所有bean的生命周期,而在bean生命周期的不同阶段,Spring提供了不同的扩展点来改变bean的命运.在容器的启动阶段,BeanF
Bean的生命周期解释(1)BeanFactoryPostProcessor的postProcessorBeanFactory()方法:若某个IoC容器内添加了
基本概念Spring中的Bean的生命周期,指的是Bean从创建到销毁的过程。下面来探究下几个有关Bean生命周期配置的属性。lazy-initlazy-ini
1.以ApplocationContext上下文单例模式装配bean为例,深入探讨bean的生命周期:(1).生命周期图:(2).具体事例:person类实现B