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

本文展示了如何在Spring应用中自定义加载.yml、.yaml和.properties属性文件,通过代码实现配置文件的灵活加载。
摘要由CSDN通过智能技术生成

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)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值