0
点赞
收藏
分享

微信扫一扫

Java 静态方法读取 yml

小暴龙要抱抱 2022-01-21 阅读 58
javayml

直接上代码

    private static void printAllProperty(Properties props) {
        @SuppressWarnings("rawtypes")
        Enumeration en = props.propertyNames();
        while (en.hasMoreElements()) {
            String key = (String) en.nextElement();
            String value = props.getProperty(key);
            System.out.println(key + " ==> " + value);
        }
    }

    public static Properties loadYml(String filePath) {
        YamlPropertiesFactoryBean factoryBean = new YamlPropertiesFactoryBean();
        //File引入
        factoryBean.setResources(new FileSystemResource(filePath));
        return factoryBean.getObject();
    }

    public static void main(String[] args) {
        Properties properties = loadYml("start/src/main/resources/application.yml");
        Properties testProperties = loadYml("start/src/main/resources/application-test.yml");
        properties.putAll(testProperties);
        printAllProperty(properties);
    }

reference

  • https://www.cnblogs.com/gossip/p/9014616.html
举报

相关推荐

0 条评论