SpringBoot學習:獲取yml和properties配置文件的內容

来源:http://www.cnblogs.com/aqsunkai/archive/2017/04/07/6690573.html
-Advertisement-
Play Games

項目下載地址:http://download.csdn.net/detail/aqsunkai/9805821 (一)yml配置文件: pom.xml加入依賴: 在application.yml文件中加上: 使用一個java類獲取yml文件的內容: 通過依賴註入就可以獲取該對象: 方法內獲取值: ( ...


項目下載地址:http://download.csdn.net/detail/aqsunkai/9805821

(一)yml配置文件:

pom.xml加入依賴:

<!-- 支持 @ConfigurationProperties 註解 -->
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-configuration-processor -->
<dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-configuration-processor</artifactId>
      <version>${spring-boot.version}</version>
</dependency>

在application.yml文件中加上:

#自定義的屬性和值
myYml:
  simpleProp: simplePropValue
  arrayProps: 1,2,3,4,5
  listProp1:
    - name: abc
      value: abcValue
    - name: efg
      value: efgValue
  listProp2:
    - config2Value1
    - config2Vavlue2
  mapProps:
    key1: value1
    key2: value2

使用一個java類獲取yml文件的內容:

package com.sun.configuration;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * 載入yaml配置文件的方法
 * Created by sun on 2017-1-15.
 * spring-boot更新到1.5.2版本後locations屬性無法使用
 * @PropertySource註解只可以載入proprties文件,無法載入yaml文件
 * 故現在把數據放到application.yml文件中,spring-boot啟動時會載入
 */
@Component
//@ConfigurationProperties(locations = {"classpath:config/myProps.yml"},prefix = "myProps")
@ConfigurationProperties(prefix = "myYml")
public class YmlConfig {

    String simpleProp;
    private String[] arrayProps;
    private List<Map<String, String>> listProp1 = new ArrayList<>(); //接收prop1裡面的屬性值
    private List<String> listProp2 = new ArrayList<>(); //接收prop2裡面的屬性值
    private Map<String, String> mapProps = new HashMap<>(); //接收prop1裡面的屬性值

    public String getSimpleProp() {
        return simpleProp;
    }

    //String類型的一定需要setter來接收屬性值;maps, collections, 和 arrays 不需要
    public void setSimpleProp(String simpleProp) {
        this.simpleProp = simpleProp;
    }

    public String[] getArrayProps() {
        return arrayProps;
    }

    public void setArrayProps(String[] arrayProps) {
        this.arrayProps = arrayProps;
    }

    public List<Map<String, String>> getListProp1() {
        return listProp1;
    }

    public void setListProp1(List<Map<String, String>> listProp1) {
        this.listProp1 = listProp1;
    }

    public List<String> getListProp2() {
        return listProp2;
    }

    public void setListProp2(List<String> listProp2) {
        this.listProp2 = listProp2;
    }

    public Map<String, String> getMapProps() {
        return mapProps;
    }

    public void setMapProps(Map<String, String> mapProps) {
        this.mapProps = mapProps;
    }
}

通過依賴註入就可以獲取該對象:

@Autowired
private YmlConfig config;

方法內獲取值:

ObjectMapper objectMapper = new ObjectMapper();
//測試載入yml文件
System.out.println("simpleProp: " + config.getSimpleProp());
System.out.println("arrayProps: " + objectMapper.writeValueAsString(config.getArrayProps()));
System.out.println("listProp1: " + objectMapper.writeValueAsString(config.getListProp1()));
System.out.println("listProp2: " + objectMapper.writeValueAsString(config.getListProp2()));
System.out.println("mapProps: " + objectMapper.writeValueAsString(config.getMapProps()));

(二)properties配置文件:

使用@PropertySource註解載入配置文件,該註解無法載入yml配置文件。使用@Value註解獲得文件中的參數值

package com.sun.configuration;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.context.support.PropertySourcesPlaceholderConfigurer;

/**
 * 載入properties配置文件,在方法中可以獲取
 * abc.properties文件不存在,驗證ignoreResourceNotFound屬性
 * 加上encoding = "utf-8"屬性防止中文亂碼,不能為大寫的"UTF-8"
 * Created by sun on 2017-3-30.
 */
@Configuration
@PropertySource(value = {"classpath:/config/propConfigs.properties","classpath:/config/abc.properties"},
        ignoreResourceNotFound = true,encoding = "utf-8")
public class PropConfig {

    // PropertySourcesPlaceholderConfigurer這個bean,
    // 這個bean主要用於解決@value中使用的${…}占位符。
    // 假如你不使用${…}占位符的話,可以不使用這個bean。
    @Bean
    public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() {
        return new PropertySourcesPlaceholderConfigurer();
    }
}
獲取properties文件參數值有兩種方法,一種獲得Environment 的對象,第二種就是@Value註解

@Autowired
    private Environment env;
    @Value("${age}")
    String name;


    @RequestMapping("/")
    @ResponseBody
    String home(HttpServletRequest req) throws JsonProcessingException, UnsupportedEncodingException {
        logger.info("測試通過!!!");
        ObjectMapper objectMapper = new ObjectMapper();
        //測試載入yml文件
        System.out.println("simpleProp: " + config.getSimpleProp());
        System.out.println("arrayProps: " + objectMapper.writeValueAsString(config.getArrayProps()));
        System.out.println("listProp1: " + objectMapper.writeValueAsString(config.getListProp1()));
        System.out.println("listProp2: " + objectMapper.writeValueAsString(config.getListProp2()));
        System.out.println("mapProps: " + objectMapper.writeValueAsString(config.getMapProps()));

        //測試載入properties文件
        System.out.println(env.getProperty("name"));//孫凱
        System.out.println(env.getProperty("abc"));//null
        System.out.println(name);//26

        return "Hello World!";
    }

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 動態代理是大型框架中經常用到的經典的技術之一,博主在理解spring的控制反轉(依賴註入)的思想時回頭著重覆習了一下java的動態代理。在說動態代理之前我們先簡單說一說代理是用來乾什麼的,用於什麼樣的業務場景然後在引入靜態代理和動態代理。 ...
  • 文件:文件是信息在電腦上的保存形式。 可控式異常:一種必須被處理或必須在可能產生異常的方法中給出聲明的異常。 可控式異常的三種處理方式: 1)try...catch捕獲 2)throws語句往上拋 3)以上兩種方法結合處理 throws 語句:聲明某個方法將不會處理某些異常的語句。 基於標記的文件 ...
  • 1.Vue簡介 Vue是一套構建用戶界面的漸進性框架。Vue採用自底向上增量開發的設計,其關註點在圖層,與angular的區別就在這裡,它關註的是圖層,而angular註釋的是數據。 2.與React的區別: 2.1相同點 使用Virtual DOM(虛擬dom) 提供響應式(Reactive) 和 ...
  • 1.僅需引入spring相關的包。 2.在xml裡加入task的命名空間 3.配置定時任務的線程池 4.寫定時任務 總結: 1.配置定時任務線程池可以同時執行同一時間的任務,否則是按照順序執行。 2.如果xml裡面開啟的懶載入,default-lazy-init="true",需要有@Lazy(fa ...
  • 項目下載地址:http://download.csdn.NET/detail/aqsunkai/9805821 定義一個攔截器,判斷用戶是通過記住我登錄時,查詢資料庫後臺自動登錄,同時把用戶放入session中。 配置攔截器也很簡單,Spring 為此提供了基礎類WebMvcConfigurerAd ...
  • 設計模式是面向對象編程的基礎,是用於指導程式設計。在實際項目開發過程中,並不是一味將設計模式進行套用,也不是功能設計時大量引入設計模式。應該根據具體需求和要求應用適合的設計模式。設計模式是一個老話題了,因為最近在設計“網關API”組件(後續介紹),採用“責任鏈設計模式”進行設計,所以先進行回顧記錄。 ...
  • 購物車主要作用在於:1、和傳統賣場類似,方便用戶一次選擇多件商品去結算。2、充當臨時收藏夾的功能。3、對於商家來說,購物車是向用戶推銷的最佳場所之一。 早期 ERP拆分 業務服務化拆分 WCS拆分 購物車功能模塊概況 層級設計 群集設計 雲購物車從應用層 面上設計了三個—— 交互層、業務... ...
  • 1 概念定義 1 概念定義 1.1 定義 確保一個類只有一個實例,而且自行實例化並向整個系統提供這個實例。 1.2 類型 創建類模式 1.3 難點 1)多個虛擬機 當系統中的單例類被拷貝運行在多個虛擬機下的時候,在每一個虛擬機下都可以創建一 個實例對象。在使用了 EJB、JINI、RMI 技術的分佈 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...