91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot怎么通過@PropertySource加載自定義yml文件

發布時間:2022-03-25 13:33:39 來源:億速云 閱讀:523 作者:小新 欄目:開發技術

小編給大家分享一下springboot怎么通過@PropertySource加載自定義yml文件,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

@PropertySource加載自定義yml文件

使用@PropertySource默認加載的是.xml或者 .properties文件,因為在注解源碼默認使用的是DefaultPropertySourceFactory實現處理文件內容,spring使用ResourcePropertySource從Resource構建Properties傳給Spring。

springboot怎么通過@PropertySource加載自定義yml文件

系統的應用,比如加載自定義的文件,將配置文件內容存儲在內存,如下:

springboot怎么通過@PropertySource加載自定義yml文件

那么加載一個自定義的.yml文件,就需要自定義實現ResourcePropertySource來處理yml文件的類

springboot怎么通過@PropertySource加載自定義yml文件

springboot怎么通過@PropertySource加載自定義yml文件

public class YamlPropertySourceFactory implements PropertySourceFactory {
    @Override
    public PropertySource<?> createPropertySource(String name, EncodedResource resource) throws IOException {
        Properties propertiesFromYaml = loadYamlIntoProperties(resource);
        String sourceName = name != null ? name : resource.getResource().getFilename();
        return new PropertiesPropertySource(sourceName, propertiesFromYaml);
    }
    private Properties loadYamlIntoProperties(EncodedResource resource) throws FileNotFoundException {
        try {
            YamlPropertiesFactoryBean factory = new YamlPropertiesFactoryBean();
            factory.setResources(resource.getResource());
            factory.afterPropertiesSet();
            return factory.getObject();
        } catch (IllegalStateException e) {
            // for ignoreResourceNotFound
            Throwable cause = e.getCause();
            if (cause instanceof FileNotFoundException)
                throw (FileNotFoundException) e.getCause();
            throw e;
        }
    }
}

@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 ;

以上是“springboot怎么通過@PropertySource加載自定義yml文件”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

丹寨县| 新兴县| 日照市| 白河县| 凤山市| 镇巴县| 尼玛县| 雅江县| 浏阳市| 浦城县| 乌海市| 固原市| 含山县| 微博| 南木林县| 新田县| 阳泉市| 安丘市| 无为县| 资兴市| 甘肃省| 张家川| 荣成市| 海丰县| 白银市| 斗六市| 华安县| 安徽省| 卢氏县| 肇源县| 万荣县| 岚皋县| 枣阳市| 鄂伦春自治旗| 巫溪县| 曲阜市| 万宁市| 闽侯县| 永吉县| 淳化县| 沂水县|