读书人

Spring Bean 初始化进程

发布时间: 2012-07-08 17:43:43 作者: rapoo

Spring Bean 初始化过程
?Spring Bean 初始化进程?Spring Bean 初始化进程?Spring Bean 初始化进程?Spring Bean 初始化进程?Spring Bean 初始化进程package com.open.bean;import org.springframework.context.support.ClassPathXmlApplicationContext;public class Test { public static void main(String[] args) { ClassPathXmlApplicationContext cx= new ClassPathXmlApplicationContext("bean.xml"); Life life=(Life)cx.getBean("life"); }}

?

?

输出结果

?

类的数量=3
msg=null
构造函数
setBeanName
setBeanFactory
postProcessBeforeInitialization
afterPropertiesSet
初始化
postProcessAfterInitialization

读书人网 >Web前端

热点推荐