SpringBoot 项目启动时读取配置文件内容到Map

实现目标:项目启动时读取配置文件存到Map对象中,在接口调用时直接从Map中获取需要的值
配置文件格式:

route.paths=0x16,0x21

route.0x16.id=order
route.0x16.path=execOrder
route.0x21.id=express
route.0x21.path=execExpress

最终存储的Map格式:

@Data
public class ParameterPath {
    private String id;
    private String path;
}
Map    map=null;
map中的key为 0x16时value为ParameterPath对象,分别存储id和path数值

实现方法:
通过实现接口EnvironmentAware,重写方法setEnvironment时执行从配置文件获取数值。
从配置文件获取数值利用了Environment 类中的getProperty()方法。

@Configuration
public class InetisIdPathConf implements EnvironmentAware {
       //存储最后的map输出值
    public static Map inetisRoute = new HashMap();

    @Override
    public void setEnvironment(Environment environment) {
        initInetisIdAndPath(environment);
    }

    private void initInetisIdAndPath(Environment env) {
        String inetisUrls = env.getProperty("route.paths");
        for (String inetisUrl : inetisUrls.split(",")) {
            ParameterPath parameterPath = new ParameterPath();
            parameterPath.setId(env.getProperty("route." + inetisUrl + ".id"));
            parameterPath.setPath("/" + env.getProperty("route." + inetisUrl + ".path"));
            inetisRoute.put(SybaseToJavaUtil.lTrimAndrTrim(inetisUrl), parameterPath);
        }
    }
}

你可能感兴趣的:(spingBoot)