spring自定义加载属性文件(yml、yaml、properties)

本文展示了如何在Spring应用中自定义加载.yml、.yaml和.properties属性文件,通过代码实现配置文件的灵活加载。

spring自定义加载属性文件yml、yaml、properties

直接上代码

import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.support.PropertySourcesPlaceholderConfigurer;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.FileSystemResource;
import org.springframework.util.CollectionUtils;

import java.io.File;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

/**
 * 简述: 属性文件配置
 *
 * @author wenlong
 */
@Slf4j
@Configuration
public class PropertiesConfig {

    @Bean
    public PropertySourcesPlaceholderConfigurer properties(){
        PropertySourcesPlaceholderConfigurer configurer = new PropertySourcesPlaceholderConfigurer();
        configurer.setIgnoreUnresolvablePlaceholders(true);

        //处理classPath中的属性文件
        dealClassPathProperties(configurer);

        //处理自定义属性文件
        dealCustomProperties(configurer);
        return configurer;
    }

    /**
     * 处理自定义属性文件
     * @param configurer
     */
    private void dealCustomProperties(PropertySourcesPlaceholderConfigurer configurer) {
        String path = getPath();
        if(StringUtils.isBlank(path)){
            return;
        }

        File file = new File(path);
        if(file.exists() && file.isDirectory()){
            List<String> files = Arrays.asList(file.list());
            Set<String> ymlSet = new HashSet<>();
            Set<String> yamlSet = new HashSet<>();
            Set<String> propertiesSet = new HashSet<>();
            if(!CollectionUtils.isEmpty(files)){
                for(String s : files) {
                   if(s.endsWith(".yml")){
                       ymlSet.add(s);
                   }else if(s.endsWith(".yaml")){
                       yamlSet.add(s);
                   }else if(s.endsWith(".properties")){
                       propertiesSet.add(s);
                   }
                }

                //处理自定义属性文件
                dealCustomProperties(configurer, path, ymlSet);
                dealCustomProperties(configurer, path, yamlSet);
                dealCustomProperties(configurer, path, propertiesSet);
            }
        }else{
            log.warn("自定义属性配置文件目录{}不存在!", path);
        }
    }

    /**
     * 处理classPath中的属性文件
     * @param configurer
     */
    private void dealClassPathProperties(PropertySourcesPlaceholderConfigurer configurer) {
        ClassPathResource yml = new ClassPathResource("application.yml");
        if(yml.exists()){
            configurer.setLocations(yml);
        }

        ClassPathResource yaml = new ClassPathResource("application.yaml");
        if(yaml.exists()){
            configurer.setLocations(yaml);
        }

        ClassPathResource properties = new ClassPathResource("application.properties");
        if(properties.exists()){
            configurer.setLocations(properties);
        }
    }

    /**
     * 处理yml及yaml类型的属性文件
     * @param configurer
     * @param path
     * @param ymlSet
     */
    private void dealCustomProperties(PropertySourcesPlaceholderConfigurer configurer, String path, Set<String> ymlSet) {
        if (!CollectionUtils.isEmpty(ymlSet)) {
            ymlSet.forEach(s -> {
                FileSystemResource propertiesResource = new FileSystemResource(path.concat(File.separator).concat(s));
                configurer.setLocations(propertiesResource);
            });
        }
    }

    /**
     * 获取自定义属性配置目录
     * @return
     */
    private String getPath() {
        String path = this.getClass().getProtectionDomain().getCodeSource().getLocation().getPath();
        if (System.getProperty("os.name").contains("dows")) {
            path = path.substring(1);
        }
        if (path.contains("jar")) {
            path = path.substring(0, path.lastIndexOf("/"));
            path = path.substring(0, path.lastIndexOf("/"));
            path = path.substring(0, path.lastIndexOf("/"));
        }else{
            return "";
        }
        return path.concat(File.separator).concat("config");
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值