1 Star 0 Fork 156

whl595145999 / Spring-Analysis

forked from huifer / Code-Analysis 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Spring-ClassPathXmlApplicationContext.md 556 Bytes
一键复制 编辑 原始数据 按行查看 历史

Spring ClassPathXmlApplicationContext

  • 类全路径: org.springframework.context.support.ClassPathXmlApplicationContext

构造函数

	public ClassPathXmlApplicationContext(
			String[] configLocations, boolean refresh, @Nullable ApplicationContext parent)
			throws BeansException {

		super(parent);
		// 设置本地配置信息
		setConfigLocations(configLocations);
		if (refresh) {
			refresh();
		}
	}
Java
1
https://gitee.com/595145999/spring-analysis.git
git@gitee.com:595145999/spring-analysis.git
595145999
spring-analysis
Spring-Analysis
master

搜索帮助