spring framework 4 源代码阅读(2)---从ClassPathXmlApplicationContext開始
Application初始化日志
- 15:23:12.790 [main] DEBUG o.s.core.env.StandardEnvironment - Adding [systemProperties] PropertySource with lowest search precedence
- 15:23:12.797 [main] DEBUG o.s.core.env.StandardEnvironment - Adding [systemEnvironment] PropertySource with lowest search precedence
- 15:23:12.797 [main] DEBUG o.s.core.env.StandardEnvironment - Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
- //初始化Environment
- 15:23:12.803 [main] INFO o.s.c.s.ClassPathXmlApplicationContext - Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@480a6370: startup date [Mon Aug 25 15:23:12 CST 2014]; root of context hierarchy
- 15:23:12.861 [main] DEBUG o.s.core.env.StandardEnvironment - Adding [systemProperties] PropertySource with lowest search precedence
- 15:23:12.862 [main] DEBUG o.s.core.env.StandardEnvironment - Adding [systemEnvironment] PropertySource with lowest search precedence
- 15:23:12.862 [main] DEBUG o.s.core.env.StandardEnvironment - Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
- //读取XML
- 15:23:12.880 [main] INFO o.s.b.f.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [simpleContext.xml]
- 15:23:12.885 [main] DEBUG o.s.b.f.xml.DefaultDocumentLoader - Using JAXP provider [com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl]
- 15:23:12.928 [main] DEBUG o.s.b.factory.xml.BeansDtdResolver - Found beans DTD [http://www.springframework.org/dtd/spring-beans-2.0.dtd] in classpath: spring-beans-2.0.dtd
- //读取BeanDefinition
- 15:23:12.953 [main] DEBUG o.s.b.f.x.DefaultBeanDefinitionDocumentReader - Loading bean definitions
- //解析XML
- 15:23:12.971 [main] DEBUG o.s.b.f.x.BeanDefinitionParserDelegate - No XML 'id' specified - using 'simpleBean' as bean name and [] as aliases
- 15:23:12.986 [main] DEBUG o.s.b.f.x.BeanDefinitionParserDelegate - No XML 'id' specified - using 'anotherBean' as bean name and [] as aliases
- 15:23:12.986 [main] DEBUG o.s.b.f.xml.XmlBeanDefinitionReader - Loaded 3 bean definitions from location pattern [simpleContext.xml]
- //将获取到的BeanDefined设置到BeanFactory中
- 15:23:12.987 [main] DEBUG o.s.c.s.ClassPathXmlApplicationContext - Bean factory for org.springframework.context.support.ClassPathXmlApplicationContext@480a6370: org.springframework.beans.factory.support.DefaultListableBeanFactory@74bdaaa: defining beans [simpleBean,property,anotherBean]; root of factory hierarchy
- //初始化MessageSource,I18N中使用
- 15:23:13.025 [main] DEBUG o.s.c.s.ClassPathXmlApplicationContext - Unable to locate MessageSource with name 'messageSource': using default [org.springframework.context.support.DelegatingMessageSource@6f526c5f]
- //application事件中心
- 15:23:13.029 [main] DEBUG o.s.c.s.ClassPathXmlApplicationContext - Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@5629fbc9]
一些bean的初始化
一个简单的bean,里面有个属性property,以及test方法和须要进行属性注入的setProperty
- /**
- * 主要的bean方便測试
- * Created by zhangya on 2014/8/13.
- */
- public class SimpleBean
- {
- private static final Logger LOGGER = LoggerFactory.getLogger(SimpleBean.class);
- private SimpleBeanProperty property;
- /**
- * 简单測试方法
- */
- public void test()
- {
- LOGGER.info("SimpleBean is loading.");
- property.propertyTest();
- }
- /**
- * 设置属性 property
- * <p>记录日志
- * @param property
- */
- public void setProperty(SimpleBeanProperty property)
- {
- LOGGER.info("Property is setting.");
- this.property = property;
- }
- }
作为属性赋值的bean,里面包括初始化方法
- /**
- * 作为属性初始化的bean
- * Created by zhangya on 2014/8/13.
- */
- public class SimpleBeanProperty
- {
- private static final Logger LOGGER = LoggerFactory.getLogger(SimpleBeanProperty.class);
- private String simpleVariable = "test567";
- public SimpleBeanProperty()
- {
- LOGGER.info("SimpleBeanProperty is loading.");
- }
- /**
- * property的test方法
- */
- public void propertyTest()
- {
- LOGGER.info("propertyTest method is invoking.{}",this);
- }
- /**
- * 设置变量
- * @param simpleVariable
- */
- public void setSimpleVariable(String simpleVariable)
- {
- this.simpleVariable = simpleVariable;
- }
- /**
- * 获取变量的值
- * @return 变量的值
- */
- public String getSimpleVariable()
- {
- return simpleVariable;
- }
- @Override
- public String toString()
- {
- return "SimpleBeanProperty{" +
- "simpleVariable='" + simpleVariable + '\'' +
- '}';
- }
- }
另外一个
- /**
- * 用于初始化的另外一个bean
- * @author zhangya
- * @category com.letume.spring.study.init
- * @since 2014/8/24
- */
- public class SimpleAnotherBean
- {
- private static final Logger LOGGER = LoggerFactory.getLogger(SimpleBeanProperty.class);
- private String simpleVariable = "test123";
- public SimpleAnotherBean()
- {
- LOGGER.info("SimpleAnotherBean is loading.");
- }
- /**
- * property的test方法
- */
- public void test()
- {
- LOGGER.info("test method is invoking.{}",this);
- }
- /**
- * 设置变量
- * @param simpleVariable
- */
- public void setSimpleVariable(String simpleVariable)
- {
- this.simpleVariable = simpleVariable;
- }
- @Override
- public String toString()
- {
- return "SimpleAnotherBean{" +
- "simpleVariable='" + simpleVariable + '\'' +
- '}';
- }
- }
simpleContext.xml applicationContext的配置文件,这里使用xml形式对bean进行配置
- <?
- xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN"
- "http://www.springframework.org/dtd/spring-beans-2.0.dtd">
- <beans>
- <bean name="simpleBean"
- class="com.letume.spring.study.init.SimpleBean">
- <property name="property"><ref local="property"/> </property>
- </bean>
- <bean id="property" name="property"
- class="com.letume.spring.study.init.SimpleBeanProperty" scope="prototype"/>
- <bean name="anotherBean"
- class="com.letume.spring.study.init.SimpleAnotherBean" scope="prototype"/>
- </beans>
以下是main函数,
例1 普通的bean初始化调用过程
- /**
- * 简单的spring类载入的方法
- * <pre>
- * ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(PATH+RESOURCE_CONTEXT);
- * SimpleBean simpleBean = context.getBean(SimpleBean.class)
- * simpleLoaderSimpleBean.test();
- * </pre>
- * Created by mitchz on 2014/8/13.
- */
- public class SimpleInit
- {
- private static final String PATH = "";
- private static final String RESOURCE_CONTEXT = "simpleContext.xml";
- public static void main(String[] args) throws InterruptedException
- {
- ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(
- PATH + RESOURCE_CONTEXT);
- //获取simpleBean
- SimpleBean simpleBean = context
- .getBean("simpleBean", SimpleBean.class);
- simpleBean.test();
- //context.registerShutdownHook();
- }
- }
- ---运行单例的初始化(为什么会使用单例)
- 14:36:48.766 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@29d8a2c5: defining beans [simpleBean,property,anotherBean]; root of factory hierarchy
- 14:36:48.767 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'simpleBean'
- ---创建bean实例
- 14:36:48.767 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'simpleBean'
- 14:36:48.786 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'simpleBean' to allow for resolving potential circular references
- ---创建属性的实例
- 14:36:48.799 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'property'
- 14:36:48.799 [main] INFO c.l.s.study.init.SimpleBeanProperty - SimpleBeanProperty is loading.
- 14:36:48.799 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'property'
- ---赋值
- 14:36:48.838 [main] INFO c.l.spring.study.init.SimpleBean - Property is setting.
- 14:36:48.840 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'simpleBean'
- ....
- ---getBean的方法运行时,则直接从cache中取。之前初始化的实例
- 14:36:48.847 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'simpleBean'
- 14:36:48.847 [main] INFO c.l.spring.study.init.SimpleBean - SimpleBean is loading.SimpleBean{property=SimpleBeanProperty{simpleVariable='test567'}}
- 14:36:48.849 [main] INFO c.l.s.study.init.SimpleBeanProperty - propertyTest method is invoking.SimpleBeanProperty{simpleVariable='test567'}
从日志中能够看出bean在没有设置scope的时候,默认值为singletone的。另外即使属性类是protetype的时候,也会在父bean初始化将其填充。
不会在调用父bean的时候,又一次初始化属性所关联的bean。具体见例2
例2。在运行过程中,添加属性改动,咱们再来运行下看看
- //改动property bean实例中的变量simpleVariable
- simpleBean.getProperty().setSimpleVariable("aaaaa");
- //又一次获取simpleBean实例
- simpleBean = context
- .getBean("simpleBean", SimpleBean.class);
- //再次运行test方法
- simpleBean.test();
看下新增的日志:
- 15:14:58.447 [main] INFO c.l.spring.study.init.SimpleBean - SimpleBean is loading.SimpleBean{property=SimpleBeanProperty{simpleVariable='aaaaa'}}
- 15:14:58.447 [main] INFO c.l.s.study.init.SimpleBeanProperty - propertyTest method is invoking.SimpleBeanProperty{simpleVariable='aaaaa'}
看来咱们之前的推測是对的,
第一、bean的scope默觉得SingleTone的
第二、bean的lazyInit为false的
第三、即使属性为prototype也不会再父bean为SingleTone的时又一次初始化
例3、再添加两行
- //获取property实例
- SimpleBeanProperty property = context
- .getBean("property", SimpleBeanProperty.class);
- //測试propertyTest方法
- property.propertyTest();
再看下运行后新增的日志:
- 15:19:10.331 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'property'
- 15:19:10.331 [main] INFO c.l.s.study.init.SimpleBeanProperty - SimpleBeanProperty is loading.
- 15:19:10.331 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'property'
- 15:19:10.331 [main] INFO c.l.s.study.init.SimpleBeanProperty - propertyTest method is invoking.SimpleBeanProperty{simpleVariable='test567'}
因为property的bean因为是prototype的,所以被又一次初始化了。
例4、再添加四行:
- //获取anotherBean实例
- SimpleAnotherBean anotherBean = context
- .getBean("anotherBean", SimpleAnotherBean.class);
- anotherBean.test();
- //设置变量的值
- anotherBean.setSimpleVariable("bbbbb");
- //又一次获取anotherBean实例
- anotherBean = context
- .getBean("anotherBean", SimpleAnotherBean.class);
- anotherBean.test();
大家在看下运行日志:
- 15:23:13.130 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'anotherBean'
- 15:23:13.130 [main] INFO c.l.s.study.init.SimpleBeanProperty - SimpleAnotherBean is loading.
- 15:23:13.130 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'anotherBean'
- 15:23:13.130 [main] INFO c.l.s.study.init.SimpleBeanProperty - test method is invoking.SimpleAnotherBean{simpleVariable='test123'}
- 15:23:13.131 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'anotherBean'
- 15:23:13.131 [main] INFO c.l.s.study.init.SimpleBeanProperty - SimpleAnotherBean is loading.
- 15:23:13.131 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'anotherBean'
- 15:23:13.131 [main] INFO c.l.s.study.init.SimpleBeanProperty - test method is invoking.SimpleAnotherBean{simpleVariable='test123'}
bean为prototype的时候。每次都会被新初始化的
通过日志的内容,梳理一下大概初始化逻辑
spring framework 4 源代码阅读(2)---从ClassPathXmlApplicationContext開始的更多相关文章
- spring framework 4 源代码阅读器(1) --- 事前准备
在你开始看代码.的第一件事要做的就是下载代码. 这里:https://github.com/spring-projects/spring-framework 下载完整的使用发现gradle建立管理工具 ...
- CI框架源代码阅读笔记2 一切的入口 index.php
上一节(CI框架源代码阅读笔记1 - 环境准备.基本术语和框架流程)中,我们提到了CI框架的基本流程.这里再次贴出流程图.以备參考: 作为CI框架的入口文件.源代码阅读,自然由此開始. 在源代码阅读的 ...
- springbank 开发日志 阅读spring mvc的源代码真是受益良多
决定模仿spring mvc的dispatcher->handlerMapping(return executorChain)->handler.execute 这样的流程之后,就开始看s ...
- spring源代码系列(一)sring源代码编译 spring源代码下载 spring源代码阅读
想对spring框架进行深入的学习一下,看看源码,提升和沉淀下自己,工欲善其事必先利其器,还是先搭建好开发环境吧. 环境搭建 sping源代码之前是svn管理,如今已经迁移到了github中了.新版本 ...
- Hello Spring Framework——依赖注入(DI)与控制翻转(IoC)
又到年关了,还有几天就是春节.趁最后还有些时间,复习一下Spring的官方文档. 写在前面的话: Spring是我首次开始尝试通过官方文档来学习的框架(以前学习Struts和Hibernate都大多是 ...
- Spring系列(零) Spring Framework 文档中文翻译
Spring 框架文档(核心篇1和2) Version 5.1.3.RELEASE 最新的, 更新的笔记, 支持的版本和其他主题,独立的发布版本等, 是在Github Wiki 项目维护的. 总览 历 ...
- Spring Framework体系结构简介
说明:以下转自Spring官方文档,用的版本为4.3.11版本. 一.引用官方文档 2.2.1核心集装箱 所述核心容器由以下部分组成spring-core, spring-beans,spring-c ...
- 【架构】spring framework核心框架体系结构
Spring官方文档,用的版本为4.3.11版本. 一.引用官方文档 2.2.1核心集装箱 所述核心容器由以下部分组成spring-core, spring-beans,spring-context, ...
- Java 推荐读物与源代码阅读
Java 推荐读物与源代码阅读 江苏无锡 缪小东 1. Java语言基础 谈到Java ...
随机推荐
- Discuz常见大问题-如何开启和使用首页四格
在论坛-首页四格中,勾选开启首页四格,然后可以选择数据来源的板块 注意首页四格刷新是有时间的,5分钟左右,不是你这里更新完了帖子那里就有了(如果你自己建的网站,可能回复和热帖都还没有) 当然你也可以使 ...
- iOS日期加减
- (NSDate *)jsDateFromBeginDate:(NSDate *)beginDate todays:(int)days { NSDate *dateTemp = [[NSDate a ...
- PHP 自学之路-----XML编程(Dom技术)
上一节,讲了Xml文件基本语法及元素,实体及Dtd约束技术,下面就正式进入PHP的Xml编程 使用PHP技术对Xml文件进行操作 常用的有以下三种技术: 1.PHP dom 2.PHP结合XPath操 ...
- Java从零开始学二十(集合简介)
一.为什么需要集合框架 数组的长度是固定的,但是如果写程序时并不知道程序运行时会需要多少对象.或者需要更复杂的方式存储对象,---那么,可以使用JAVA集合框架,来解决这类问题 二.集合框架主要接口 ...
- Yahoo团队总结的关于网站性能优化的经验(转)
英文原文:http://developer.yahoo.com/performance/rules.html 中文原文:http://www.ha97.com/2710.html 1.尽量减少HTTP ...
- 采集的时候,列表的编码是gb2312,内容页的编码却是UTF-8,这种网站怎么采集?
采集的时候,列表的编码是gb2312,内容页的编码却是UTF-8,这种网站怎么采集? 采集的时候,列表的编码是UTF-8,内容页的编码却是gb2312,这种网站怎么采集? 这种情况怎么解决呢? 哈哈哈 ...
- 通过jaxws-ri创建webservice服务端和客户端
1. 获得开发包 当然是到 SUN 的开发网站下载 JAX-WS RI,或者下载我的网盘备份 ,下载下来的只是一个jar包,参考官网上的方法在命令行调用:java -jar JAXWS2.1.2-20 ...
- 6、javac命令详解
javac [ options ] [ sourcefiles ] [ @files ] 参数可按任意次序排列. options 命令行选项. sourcefiles 一个或多个要编译的源文件(例如 ...
- CentOS 中文乱码
同事刚装的一台CentOS服务器,SSH登录乱码: 猜测应该是安装时选择的是简体中文,因为发现/etc/sysconfig/i18n文件里面是zh_CN. LANG="zh_CN.UTF-8 ...
- IE和火狐兼容常见问题
文章转自http://www.cnblogs.com/asqq/archive/2013/03/09/3194994.html 1,document.form.item/document.ID IE中 ...