欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2024-01-09 19:33:52
...

实现目标:项目启动时读取配置文件存到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   <String, ParameterPath> map=null;
map中的key为 0x16时value为ParameterPath对象,分别存储id和path数值

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

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

    @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