首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

Spring Bean 初始化进程

2012-07-08 
Spring Bean 初始化过程?????package com.open.beanimport org.springframework.context.support.ClassPa

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

热点排行