bean的完整生命周期,对于scope属性为singleton的bean,是从实例化开始到销毁。我们可以从输出的结果中看出其顺序:
先设置UserInfo.class:
public class UserInfo {
static {
System.out.println("静态代码块");
}
{
System.out.println("非静态代码块");
}
private String name;
public UserInfo() {
System.out.println("构造方法");
}
public String getName() {
System.out.println("getter方法");
return name;
}
public void setName(String name) {
System.out.println("setter方法");
this.name = name;
}
public void init() {
System.out.println("init");
}
public void destory() {
System.out.println("destory");
}
}
配置application.xml为:
<?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.xsd">
<bean id="userInfo" class="com.jd.vo.UserInfo" lazy-init="true" scope="singleton" init-method="init" destroy-method="destory">
<property name="name" value="Tom"></property>
</bean>
</beans>
设置Test.java为:
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Test {
public static void main(String[] args) {
ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("application.xml");
applicationContext.getBean("userInfo");//实例化。
applicationContext.close();//销毁IoC容器。
}
}
结果为:
由结果可以看出bean的声明周期为:
从实例化开始到销毁,执行 静态代码块—>非静态代码块—>构造方法—>setter方法—>init-method中设置的方法—>关闭IoC容器—>destroy-method中设置的方法。