net.hasor.solon.boot.BuildConfig Maven / Gradle / Ivy
/*
* Copyright 2002-2005 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.hasor.solon.boot;
import net.hasor.core.AppContext;
import net.hasor.core.Hasor;
import net.hasor.core.Module;
import net.hasor.utils.StringUtils;
import org.noear.solon.Solon;
import org.noear.solon.Utils;
import org.noear.solon.core.util.ResourceUtil;
import java.io.IOException;
import java.net.URL;
import java.util.*;
/**
* 负责创建 Hasor。
* @version : 2020年02月27日
* @author 赵永春 ([email protected])
*/
public class BuildConfig {
private static BuildConfig instance;
public static BuildConfig getInstance() {
if(instance == null){
instance = new BuildConfig();
}
return instance;
}
public String mainConfig = null; // 主配置文件
public Properties envProperties = null; // 1st,来自 EnvironmentAware 接口的 K/V
public Properties refProperties = null; // 2st,通过 refProperties 配置的 K/V
public Map