中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Java怎么使用ConfigurationProperties獲取yml中的配置

發布時間:2022-02-17 13:35:43 來源:億速云 閱讀:244 作者:iii 欄目:開發技術

這篇文章主要介紹“Java怎么使用ConfigurationProperties獲取yml中的配置”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Java怎么使用ConfigurationProperties獲取yml中的配置”文章能幫助大家解決問題。

使用ConfigurationProperties獲取yml的配置

我們在開發過程中,會經常遇到需要自定義配置的場景,比如配置一個ip,一個地址等,并將其寫入到yml文件中,在項目中使用@Value("${xxxx.xxxx}")來獲取自定義的配置,其實是這樣是有些笨重的,每定義一個配置,都需要寫一個@Value來獲取,那為啥不使用一個java config來統一獲取配置呢?

使用方法

編寫yml配置文件

user:
  config:
    # user_name user-name userName這三種配置方式都可以被識別到
    user_name: "zhangsan"
    age: "20"
    exmail: "123@123.com"
    address: "火星"

編寫Java config類

// 需要重寫get與set方法,此處使用lombok注解來代替
@Data
// 實例化到spring容器中
@Component
// 獲取前綴為user.config的配置信息,與該類下的屬性對比,進行綁定
@ConfigurationProperties(prefix = "user.config")
public class UserConfig {
    private String userName;
    private String age;
    private String exmail;
    private String address;
}

在需要使用的地方注入

    @Resource
    private UserConfig userConfig;

測試

Java怎么使用ConfigurationProperties獲取yml中的配置

@ConfigurationProperties獲取不到配置文件屬性值問題

application.yml

Java怎么使用ConfigurationProperties獲取yml中的配置

配置類

@Component
@ConfigurationProperties(prefix = "system")
public class SystemConfig {
    /**
     * 項目名稱
     */
    private static String name;
    /**
     * 版本
     */
    private String version;
    /**
     * 版權年份
     */
    private String copyrightYear;
    /**
     * 實例演示開關
     */
    private boolean demoEnabled;
    /**
     * windows環境下,文件上傳路徑(本地上傳)
     */
    private static String winUploadPath;
    /**
     * 其他系統環境(linux、Mac...)環境下,文件上傳路徑(本地上傳)
     */
    private static String otherUploadPath;
    /**
     * 獲取地址開關
     */
    private static boolean addressEnabled;
    public static String getName() {
        return name;
    }
    public void setName(String name) {
        SystemConfig.name = name;
    }
    public String getVersion() {
        return version;
    }
    public void setVersion(String version) {
        this.version = version;
    }
    public String getCopyrightYear() {
        return copyrightYear;
    }
    public void setCopyrightYear(String copyrightYear) {
        this.copyrightYear = copyrightYear;
    }
    public boolean isDemoEnabled() {
        return demoEnabled;
    }
    public void setDemoEnabled(boolean demoEnabled) {
        this.demoEnabled = demoEnabled;
    }
    public static String getWinUploadPath() {
        return winUploadPath;
    }
    public static void setWinUploadPath(String winUploadPath) {
        SystemConfig.winUploadPath = winUploadPath;
    }
    public static String getOtherUploadPath() {
        return otherUploadPath;
    }
    public static void setOtherUploadPath(String otherUploadPath) {
        SystemConfig.otherUploadPath = otherUploadPath;
    }
    public static boolean isAddressEnabled() {
        return addressEnabled;
    }
    public void setAddressEnabled(boolean addressEnabled) {
        SystemConfig.addressEnabled = addressEnabled;
    }
    /**
     * 判斷當前操作系統,返回相應的本地上傳路徑
     *
     * @return String
     * @author Liangyixiang
     * @date 2021/11/15
     **/
    public static String getUploadPath() {
        OsInfo osInfo = SystemUtil.getOsInfo();
        // 判斷系統環境獲取上傳路徑
        if(ObjectUtils.isNotEmpty(osInfo) && osInfo.isWindows()){
            return getWinUploadPath();
        }else{
            return getOtherUploadPath();
        }
    }
    /**
     * 獲取業務系統名稱
     */
    public static String getSystemName() {
        return getName();
    }
}

name、addressEnabled 以及 winUploadPath、otherUploadPath 都是靜態的成員變量,但是他們name、addressEnabled能獲取到配置文件的值,winUploadPath、otherUploadPath不可以。

原因就是

winUploadPath、otherUploadPath對應的ser方法也定義為了靜態方法。

關于“Java怎么使用ConfigurationProperties獲取yml中的配置”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

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

AI

永新县| 诸城市| 平远县| 襄樊市| 大方县| 什邡市| 龙川县| 巴塘县| 诸城市| 丰镇市| 绵阳市| 东海县| 长子县| 施秉县| 化德县| 沈丘县| 望都县| 崇左市| 平谷区| 德化县| 揭阳市| 西贡区| 姜堰市| 招远市| 万山特区| 彰化县| 临朐县| 南郑县| 留坝县| 鄂托克旗| 孝昌县| 磐安县| 临漳县| 南通市| 河池市| 溧阳市| 乌兰察布市| 金乡县| 松阳县| 五峰| 延津县|