Spring对象生命周期

spring对象的生命周期:

生命周期的执行过程如下:

public class UserInfo {
	
	static {
		System.out.println("静态方法");
	}
	{
		System.out.println("非静态方法");
	}
	
	private String name;
	public String getName() {
		System.out.println("get方法");
		return name;
	}
	public void setName(String name) {
		System.out.println("set方法");
		this.name = name;
	}
	public UserInfo(){
		System.out.println("构造方法");
	}
	public void init() {
		System.out.println("init方法");
	}
	public void destroy() {
		System.out.println("destroy方法");
	}

}
public class Test {
	
	public static void main(String[] args) {
		ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("application.xml"); 
		Object object = applicationContext.getBean("userInfo");
		System.out.println(object);
		applicationContext.close();
		
	}
}
<bean id="userInfo" class="com.jd.vo.UserInfo" 
lazy-init="true" scope="singleton" init-method="init" 
destroy-method="destroy"  >
	<property name="name" value="Tom"></property>
</bean>

代码执行结果如下:
在这里插入图片描述
注意:
只有对象是单例的时候才会执行destroy方法,多例的时候不会执行;

<bean id="userInfo" class="com.jd.vo.UserInfo" 
lazy-init="true" scope="prototype" init-method="init" 
destroy-method="destroy"  >

在这里插入图片描述

单例对象(与容器共存亡):

出生:容器创建出生对象
活着:只要容器存在,对象就一直活着可用
死亡:容器销毁,对象消亡

多例对象:

出生:每次调用时,容器会为我们创建对象
活着:只要对象在使用过程中,就一直活着可用
死亡:当对象长时间不用,并且也没有其他对象引用时,由java的垃圾回收器回收
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值