关于@PropertySource注解对于yml的支持

@PropertySource只对properties文件可以进行加载,但对于yml或者yaml不能支持。
追寻源码。

public class DefaultPropertySourceFactory implements PropertySourceFactory {
    public DefaultPropertySourceFactory() {
    }

    public PropertySource<?> createPropertySource(String name, EncodedResource resource) throws IOException {
        return name != null ? new ResourcePropertySource(name, resource) : new ResourcePropertySource(resource);
    }
}

我们只需要继承DefaultPropertySourceFactory类并修改就可以了。

public class YamlConfigFactory extends DefaultPropertySourceFactory {

    @Override
    public PropertySource<?> createPropertySource(String name, EncodedResource resource) throws IOException {
        String sourceName = name != null ? name : resource.getResource().getFilename();
        if (!resource.getResource().exists()) {
            return new PropertiesPropertySource(sourceName, new Properties());
        } else if (sourceName.endsWith(".yml") || sourceName.endsWith(".yaml")) {
            Properties propertiesFromYaml = loadYml(resource);
            return new PropertiesPropertySource(sourceName, propertiesFromYaml);
        } else {
            return super.createPropertySource(name, resource);
        }
    }

    private Properties loadYml(EncodedResource resource) throws IOException {
        YamlPropertiesFactoryBean factory = new YamlPropertiesFactoryBean();
        factory.setResources(resource.getResource());
        factory.afterPropertiesSet();
        return factory.getObject();
    }
}

@PropertySource(value = {"classpath:dog.yml"},factory = YamlConfigFactory.class)
@Component
@ConfigurationProperties(prefix = "dog")
public class Dog {

    private String name ;
    private String age ;

  • 7
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
`@PropertySource`注解默认只支持`.properties`格式的配置文件,不支持`.yaml`和`.yml`格式的配置文件。如果需要读取`.yaml`或`.yml`格式的配置文件,可以使用`@ConfigurationProperties`注解来读取。 假设我们有一个`application.yml`配置文件,在其中定义了一个`my.package`变量,我们可以按照以下方式在`RestControllerAdvice`中使用它: 1. 在`application.yml`中定义变量: ```yaml my: package: com.example.myapp ``` 2. 在`RestControllerAdvice`中使用`@ConfigurationProperties`注解读取配置文件中的变量: ```java @ConfigurationProperties(prefix = "my") public class MyProperties { private String package; public String getPackage() { return package; } public void setPackage(String packageName) { this.package = packageName; } } @RestControllerAdvice(basePackages = "#{@myProperties.package}") public class MyRestControllerAdvice { // ... } ``` 在这个例子中,`@ConfigurationProperties`注解用于读取`application.yml`中的`my.package`属性,并将其映射为`MyProperties`对象的`package`属性。然后,我们可以使用SpEL表达式`#{@myProperties.package}`来引用这个属性,从而指定了`MyRestControllerAdvice`所要扫描的包。需要注意的是,`@ConfigurationProperties`注解需要在Spring配置类中使用,并且要将`MyProperties`对象注册到Spring容器中。 这样,就可以使用`@ConfigurationProperties`注解来读取`.yaml`和`.yml`格式的配置文件,并将其中的变量传递给`basePackages`属性了。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值