码迷,mamicode.com
首页 > 编程语言 > 详细

Spring源码:Spring 容器资源加载模板模式应用

时间:2015-07-31 14:58:01      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:


模板位于:abstract class AbstractXmlApplicationContext :

	protected void loadBeanDefinitions(XmlBeanDefinitionReader reader) throws BeansException, IOException {
		Resource[] configResources = getConfigResources(); //加载路径由子类去覆盖实现
		if (configResources != null) {
			reader.loadBeanDefinitions(configResources);
		}
		String[] configLocations = getConfigLocations();
		if (configLocations != null) {
			reader.loadBeanDefinitions(configLocations);
		}
	}

子类的实现:FileSystemXmlApplicationContext extends AbstractXmlApplicationContext

	@Override
	protected Resource getResourceByPath(String path) {
		if (path != null && path.startsWith("/")) {
			path = path.substring(1);
		}
		return new FileSystemResource(path);
	}

资源的加载,是Spring IOC容器启动的第一步!

版权声明:本文为博主原创文章,未经博主允许不得转载。

Spring源码:Spring 容器资源加载模板模式应用

标签:

原文地址:http://blog.csdn.net/tragedyxd/article/details/47168595

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!