springboot2中@ConfigurationProperties装载yml文件的时候调取出现值为null的解决办法

程序配置:springboot2,Java8

@Configuration
@Data
@ConfigurationProperties(prefix = "person")
@PropertySource(value = "classpath:content.yml", encoding = "UTF-8")
public class SourceConfig {
    
    private String name;
    private String age;
    private String address;
}

 

yml文件:

person:
  name: hhhh
  age: 20
  address: 北京

以上是我一开始的配置,使用lombok的@Data注解自动生成get,set等方法,但是这种情况下,测试调用sourceConfig为null,主要参考了stackflow的办法,

问题在于:当前springboot版本里面@ConfigurationProperties默认配置properties文件,而暂时不支持默认导入yml文件(以上yml文件改用properties文件导入是可行不会出现null)

解决办法:

@PropertySource(value = "classpath:content.yml", encoding = "UTF-8", factory = YamlPropertyLoaderFactory.class)

import org.springframework.boot.env.YamlPropertySourceLoader;
import org.springframework.core.env.PropertySource;
import org.springframework.core.io.support.DefaultPropertySourceFactory;
import org.springframework.core.io.support.EncodedResource;
import java.io.IOException;

public class YamlPropertyLoaderFactory extends DefaultPropertySourceFactory {
    @Override
    public PropertySource<?> createPropertySource(String name, EncodedResource resource) throws IOException {
        if (resource == null){
            return super.createPropertySource(name, resource);
        }

        return new YamlPropertySourceLoader().load(resource.getResource().getFilename(), resource.getResource()).get(0);
    }
}

通过重写框架默认DefaultPropertySourceFactory方法,使.yml文件装配成功。

 

看了stackflow的解答,在别人帮助下修改解决问题的

stackflow的该问题解答链接:https://stackoverflow.com/questions/21271468/spring-propertysource-using-yaml

 我修改了他里面YamlPropertyLoaderFactory方法最后一行的返回值,他那个方法我编译的时候会报错~

评论 7
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值