Spring实例化bean过程解析及完整代码示例
提出问题
spring中bean的实例化是bean生命周期的一个重要环节,通常bean初始化后将不再改变。
那么spring实例bean的过程到底是怎么样的呢?!
spring实例化bean过程分析
要想获取到一个bean对象,得先通过beanfactory的getbean()方法获取,期间会经过一系列步骤来实例化这个bean对象:
第一步:调用bean的默认构造方法(当然也可以是指定的其它构造方法),生成bean实例:bean1。
第二步:检查bean配置文件中是否注入了bean的属性值,如果有注入,则在bean1实例的基础上对其属性进行注入,把原来的bean1给覆盖掉形成新的bean实例:bean2。
第三步:检查bean是否实现了initializingbean接口,如果实现了此接口,则调用afterpropertiesset()方法对bean2进行相应操作后,把bean2覆盖形成新的bean实例:bean3。
第四步:检查bean配置文件中是否指定了init-method此属性,如果已指定,则调用此属性对应方法并对bean3进行相应操作后,最终把bean3覆盖形成新的实例:bean4。
通过上面的步骤我们发现,spring实例一个bean时,这个bean是在不断的变化的!
spring实例化bean过程代码演示
为了更好的说明以上步骤,请看下面代码:
实体类:
/** * 实体类 */ public class employee implements initializingbean, disposablebean, beannameaware { private string id; // 员工编号 private string name; // 员工姓名 private string sex; // 员工性别 private string age; // 员工年龄 private string nativeplace; // 员工籍贯 private string department; // 员工部门 private string beanname; // bean的名称 public employee() { system.out.println("**********第一步:调用bean的默认构造方法**********"); this.id = "bean1:g080405214"; system.out.println("bean1的 值:" + this); system.out.println("**********第二步:检查bean配置文件中是否注入了bean的属性值**********"); } public void afterpropertiesset() throws exception { system.out.println("bean2的值:" + this); system.out.println("**********第三步:检查bean是否实现了initializingbean接口**********"); this.name = "bean3:李晓红"; this.sex = "bean3:女"; this.age = "bean3:25"; system.out.println("bean3的值:" + this); } public void init() { system.out .println("**********第四步:检查bean配置文件中是否指定了init-method此属性**********"); this.nativeplace = "bean3:北京"; system.out.println("bean4的值:" + this); } public void destroy() throws exception { system.out.println("**********服务停止**********"); } public void setbeanname(string arg0) { system.out.println("**********设置bean的名称**********"); this.beanname = "mybeanname"; } public string getid() { return id; } public void setid(string id) { this.id = id; } public string getname() { return name; } public void setname(string name) { this.name = name; } public string getsex() { return sex; } public void setsex(string sex) { this.sex = sex; } public string getage() { return age; } public void setage(string age) { this.age = age; } public string getnativeplace() { return nativeplace; } public void setnativeplace(string nativeplace) { this.nativeplace = nativeplace; } public string getdepartment() { return department; } public void setdepartment(string department) { this.department = department; } public string getbeanname() { return beanname; } @override public string tostring() { return "employee [id=" + id + ", name=" + name + ", sex=" + sex + ", age=" + age + ", nativeplace=" + nativeplace + ", department=" + department + ", beanname=" + beanname + "]"; } }
工具类:
/** * bean上下文工具类 */ public class beancontexthelper { private static applicationcontext _instance; static { if (_instance == null) _instance = buildapplicationcontext(); } private beancontexthelper() { } /** * 重新构建applicationcontext对象 */ public static applicationcontext buildapplicationcontext() { return new classpathxmlapplicationcontext("applicationcontext-base.xml"); } /** * 获取一个applicationcontext对象 */ public static applicationcontext getapplicationcontext() { return _instance; } }
spring的bean配置:
<?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"> <!--==============测试spring beanfactory实例化bean的过程--> <bean id="employee" class="bean_factory_test.employee" init-method="init" destroy-method="destroy"> <!--默认部门为研发部的--> <property name="department"> <value>bean2:研发部</value> </property> </bean> </beans>
测试类:
/** * beanfactory实例化bean工程测试类 */ public class test { public static void main(string args[]) { test test = new test(); test.test(); } public void test() { applicationcontext context = beancontexthelper.getapplicationcontext(); employee employee = (employee) context.getbean("employee"); system.out.println("**********从spring beanfactory获取到的最终bean实例**********"); system.out.println("最终bean的值:" + employee); } }
运行结果:
**********第一步:调用bean的默认构造方法********** bean1的 值:employee [id=bean1:g080405214, name=null, sex=null, age=null, nativeplace=null, department=null, beanname=null] **********第二步:检查bean配置文件中是否注入了bean的属性值********** **********设置bean的名称********** bean2的值:employee [id=bean1:g080405214, name=null, sex=null, age=null, nativeplace=null, department=bean2:研发部, beanname=mybeanname] **********第三步:检查bean是否实现了initializingbean接口********** bean3的值:employee [id=bean1:g080405214, name=bean3:李晓红, sex=bean3:女, age=bean3:25, nativeplace=null, department=bean2:研发部, beanname=mybeanname] **********第四步:检查bean配置文件中是否指定了init-method此属性********** bean4的值:employee [id=bean1:g080405214, name=bean3:李晓红, sex=bean3:女, age=bean3:25, nativeplace=bean3:北京, department=bean2:研发部, beanname=mybeanname] **********从spring beanfactory获取到的最终bean实例********** 最终bean的值:employee [id=bean1:g080405214, name=bean3:李晓红, sex=bean3:女, age=bean3:25, nativeplace=bean3:北京, department=bean2:研发部, beanname=mybeanname]
从运行结果看,我们应该很清楚bean实例化的具体过程了。
employee实现了3个接口:
initializingbean:此接口提供afterpropertiesset()方法,它的作用是为bean提供了定义初始化的功能。
disposablebean:此接口提供destroy()方法,它的作用是在bean实例销毁前提供操作的功能。
beannameaware:此接口提供setbeanname()方法,它的作用是提供设置bean名称的功能,从上面的运行结果可以看出,此方法是在第二步进行的。
总结
以上就是本文关于spring实例化bean的过程的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站:
《spring实现aware接口自定义获取bean的两种方式》
如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!