SpringBoot 配置文件外置方案

文章介绍了两种在项目启动时加载配置文件的方法。方案一是通过在Application文件中设置环境变量,利用YamlPropertiesFactoryBean加载yml文件;方案二是基于SpringCloud的PropertySourceLocator接口,实现自定义的配置加载,从指定路径读取yml文件并解析成MapPropertySource。
摘要由CSDN通过智能技术生成

方案一:项目启动时设置环境变量

在Application文件中的configure方法添加如下代码(注:会影响同一jvm环境中的其他项目):

YamlPropertiesFactoryBean yaml = new YamlPropertiesFactoryBean();
yaml.setResources(new FileSystemResource(“yml文件地址”));
System.getProperties().putAll(Objects.requireNonNull(yaml.getObject()));
方案二:基于SpringCloud的PropertySourceLocator接口加载配置文件
  1. 在pom文件中添加依赖:
<dependency>
	<groupId>org.springframework.cloud</groupId>
	<artifactId>spring-cloud-starter</artifactId>
	<version>2.2.9.RELEASE</version>
</dependency>
  1. 实现PropertySourceLocator接口,完整代码如下:
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.config.YamlMapFactoryBean;
import org.springframework.cloud.bootstrap.config.PropertySourceLocator;
import org.springframework.core.annotation.Order;
import org.springframework.core.env.Environment;
import org.springframework.core.env.MapPropertySource;
import org.springframework.core.env.PropertySource;
import org.springframework.core.io.FileSystemResource;
import java.util.*;

@Slf4j
@Order(0)
public class IvPropertySourceLocator implements PropertySourceLocator {

    @Override
    public PropertySource<?> locate(Environment environment) {
        return new MapPropertySource("iv", ymlParse("/opt/weblogic/config/application-dev.yml"));
    }

    /**
     * yml文件解析
     */
    private Map<String, Object> ymlParse(String location) {
        log.info("开始加载系统配置文件 >>>>> {}", location);
        YamlMapFactoryBean yamlFactory = new YamlMapFactoryBean();
        yamlFactory.setResources(new FileSystemResource(location));
        Map<String, Object> result = new LinkedHashMap<>();
        flattenedMap(result, Objects.requireNonNull(yamlFactory.getObject()), null);
        return result;
    }

    protected void flattenedMap(Map<String, Object> result, Map<String, Object> dataMap,
                                String parentKey) {
        for (Map.Entry<String, Object> entry : dataMap.entrySet()) {
            String key = entry.getKey();
            Object value = entry.getValue();

            String fullKey = StringUtils.isEmpty(parentKey) ? key : key.startsWith("[")
                    ? parentKey.concat(key) : parentKey.concat(".").concat(key);
            if (value instanceof Map) {
                Map<String, Object> map = (Map<String, Object>) value;
                flattenedMap(result, map, fullKey);
                continue;
            } else if (value instanceof Collection) {
                int count = 0;
                Collection<Object> collection = (Collection<Object>) value;
                for (Object object : collection) {
                    flattenedMap(result,
                            Collections.singletonMap("[" + (count++) + "]", object),
                            fullKey);
                }
                continue;
            }
            result.put(fullKey, value);
        }
    }
}
  1. 创建Configuration,完整代码如下:
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration(proxyBeanMethods = false)
public class IvConfigBootstrapConfiguration {

    @Bean
    public IvPropertySourceLocator ivPropertySourceLocator(){
        return new IvPropertySourceLocator ();
    }
}
  1. 在项目resources\META-INF目录中创建spring.factories文件,文件内容如下:
org.springframework.cloud.bootstrap.BootstrapConfiguration=\
com.iv.config.IvConfigBootstrapConfiguration

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

唐 逸

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值