C#配置文件configSections詳解

来源:https://www.cnblogs.com/lxshwyan/archive/2019/05/07/10828305.html
-Advertisement-
Play Games

一、問題需求: 在項目中經常遇到需要寫配置文件地方,目的就是不想在程式中關於一些信息寫死,發佈的時候只需要修改一下配置文件就可以,不需要每次都修改程式,如項目名稱、資料庫連接字元串、IP埠之類 的;對於小項目或者服務程式,配置信息可以通過系統自帶的appSettings進行配置,但大項目或者配置信 ...


       一、問題需求: 在項目中經常遇到需要寫配置文件地方,目的就是不想在程式中關於一些信息寫死,發佈的時候只需要修改一下配置文件就可以,不需要每次都修改程式,如項目名稱、資料庫連接字元串、IP埠之類 的;對於小項目或者服務程式,配置信息可以通過系統自帶的appSettings進行配置,但大項目或者配置信息太多,如果都用appSettings來配置就感覺比較雜亂,運維人員在修改配置的時候不好修改,而且如果想找某一模塊相關或者某一節點配置容易出錯,這時如果能分類管理,例如跟資料庫相關的寫到一個節點里,跟某個業務獨立相關的可以也能單獨寫一個節點上 等等;

     二、解決方案:其實 使用.net自帶的configSections,將配置信息分塊管理,並提供實體類且還能單配置文件管理,這樣程式員可以根據業務類型等其他方式分類寫入配置文件,運維人員可以針對某一項進行修改部署維護;

     三、具體實現:接下來演示一下幾種自定義的configSections節點,有單節點配置、多節點配置、自定義節點配置

        1、  首先演示一下單節點配置:

             1.1 新建一個類繼承ConfigurationSection,新增屬性及調用方法  

 /// <summary>
    /// 單級自定義配置節點
    /// </summary>
   public class CustomerSingleConfig:ConfigurationSection
    {      
        /// <summary>
        /// 獲取配置信息
        /// </summary>
        /// <returns></returns>
        public static CustomerSingleConfig GetConfig()
        {
            return GetConfig("CustomerSingleConfig");
        }
        /// <summary>
        /// 獲取配置信息
        /// </summary>
        /// <param name="sectionName"></param>
        /// <returns></returns>
        public static CustomerSingleConfig GetConfig(string sectionName)
        {
            CustomerSingleConfig section = (CustomerSingleConfig)ConfigurationManager.GetSection(sectionName);
            if (section == null)
                throw new ConfigurationErrorsException("Section " + sectionName + " is not found.");
            return section;
        }
           
        /// <summary>
        /// 平臺中文名稱
        /// </summary>
       [ConfigurationProperty("PlatChName",DefaultValue = "", IsRequired = true, IsKey = false)]
        public string PlatChName 
        {
            get { return (string)this["PlatChName"]; }
            set { this["PlatChName"]=value; }
        }  

        /// <summary>
        /// 平臺英文名稱
        /// </summary>
       [ConfigurationProperty("PlatEnName",DefaultValue = "", IsRequired = true, IsKey = false)]
        public string PlatEnName
        {
            get { return (string)this["PlatEnName"]; }
            set { this["PlatEnName"] = value; }
        }

    }

        1.2 在app.config------>configuration--------->configSections裡面加入CustomerSingleConfig節點,如下:

<!--單級配置節點測試-->
        <section name="CustomerSingleConfig" type="ConfigDemo.CustomerSingleConfig,ConfigDemo"/>

       1.3 在app.config------>configuration------->新建CustomerSingleConfig裡面加入配置信息

<CustomerSingleConfig PlatChName="監控平臺系統" PlatEnName="Monitoring platform system"></CustomerSingleConfig>

       1.4 調用獲取配置信息

  static void Main(string[] args)
        {
            Console.WriteLine("---------------------單級配置節點測試-----------------");
            Console.WriteLine("PlatChName:" + CustomerSingleConfig.GetConfig().PlatChName);
            Console.WriteLine("PlatEnName:" + CustomerSingleConfig.GetConfig().PlatEnName);
        }

      1.5 運行效果如下

   

       1.6 針對1.3還可以更進一步分離配置寫法,可以單獨配置成一個config文件

          將1.3 <section name="CustomerSingleConfig" type="ConfigDemo.CustomerSingleConfig,ConfigDemo"/>這個節點內容換成如下配置:

           <CustomerSingleConfig configSource="CfgFiles\CustomerSingleConfig.config" />

          再新一個CfgFiles文件夾在文件裡面新增CustomerSingleConfig.config:

<?xml version="1.0" encoding="utf-8" ?>
<CustomerMultiConfig >
<CustomerElement connectionString="Data Source='.';Initial Catalog='UniDataNH';User ID='sa';Password='123456'" enabled="true"></CustomerElement>
</CustomerMultiConfig>

         整體截圖配置如下:


 

     2、接下來演示一下多級節點

         2.1先定義一個子節點類CustomerElement繼承ConfigurationElement

public class CustomerElement:ConfigurationElement
    {
        private const string EnablePropertyName = "enabled";

        private const string ConnectionStringPropery = "connectionString";

        [ConfigurationProperty(EnablePropertyName, IsRequired = true)]
        public bool Enabled
        {
            get { return (bool)base[EnablePropertyName]; }
            set { base[EnablePropertyName] = value; }
        }

        [ConfigurationProperty(ConnectionStringPropery, IsRequired = true)]
        public string ConnectionString
        {
            get { return (string)base[ConnectionStringPropery]; }
            set { base[ConnectionStringPropery] = value; }
        }
    }

        2.2再定一個配置節點類CustomerMultiConfig繼承ConfigurationSection,和單個節點配置一樣

namespace ConfigDemo
{
    /// <summary>
    /// 多級配置文件自定義節點配置
    /// </summary>
   public class CustomerMultiConfig:ConfigurationSection
    {
        private const string CustomerConfigPropertyName = "CustomerElement";
        /// <summary>
        /// 獲取配置信息
        /// </summary>
        /// <returns></returns>
        public static CustomerMultiConfig GetConfig()
        {
            return GetConfig("CustomerMultiConfig");
        }
        /// <summary>
        /// 獲取配置信息
        /// </summary>
        /// <param name="sectionName">xml節點名稱</param>
        /// <returns></returns>
        public static CustomerMultiConfig GetConfig(string sectionName)
        {
            CustomerMultiConfig section = (CustomerMultiConfig)ConfigurationManager.GetSection(sectionName);
            if (section == null)
                throw new ConfigurationErrorsException("Section " + sectionName + " is not found.");
            return section;
        }
        [ConfigurationProperty(CustomerConfigPropertyName)]
        public CustomerElement CustomerElementConfig
        {
            get { return (CustomerElement)base[CustomerConfigPropertyName]; }
            set { base[CustomerConfigPropertyName] = value; }
        }
    }
}

     2.3  接下就是在app.config------>configuration--------->configSections裡面加入CustomerMultiConfig節點,詳細步驟和單節點一下 如圖配置

     2.4 調用獲取配置信息代碼如下:

Console.WriteLine("---------------------多級配置節點測試-----------------");
            Console.WriteLine("connectionString:" + CustomerMultiConfig.GetConfig().CustomerElementConfig.Enabled);
            Console.WriteLine("enabled:" + CustomerMultiConfig.GetConfig().CustomerElementConfig.ConnectionString);

     2.5  運行效果如下圖:

 


3、再演示一下自定義節點配置,可以隨意添加配置節點信息

          3.1 具體操作步驟類似,代碼如下:

namespace ConfigDemo
{
    public class TestConfigInfo : ConfigurationSection
    {
        [ConfigurationProperty("trackers", IsDefaultCollection = false)]
        public trackers Trackers { get { return (trackers)base["trackers"]; } }
        /// <summary>
        /// 獲取配置信息
        /// </summary>
        /// <returns></returns>
        public static TestConfigInfo GetConfig()
        {
            return GetConfig("TestConfigInfo");
        }
        /// <summary>
        /// 獲取配置信息
        /// </summary>
        /// <param name="sectionName">xml節點名稱</param>
        /// <returns></returns>
        public static TestConfigInfo GetConfig(string sectionName)
        {
            TestConfigInfo section = (TestConfigInfo)ConfigurationManager.GetSection(sectionName);
            if (section == null)
                throw new ConfigurationErrorsException("Section " + sectionName + " is not found.");
            return section;
        }
        [ConfigurationProperty("TestName", IsRequired = false)]
        public string TestName
        {
            get { return (string)base["TestName"]; }
            set { base["TestName"] = value; }
        }
        [ConfigurationProperty("TestID", IsRequired = false)]
        public string TestID
        {
            get { return (string)base["TestID"]; }
            set { base["TestID"] = value; }
        }
    }

    public class trackers : ConfigurationElementCollection
    {
        [ConfigurationProperty("TrackerName", IsRequired = false)]
        public string TrackerName
        {
            get { return (string)base["TrackerName"]; }
            set { base["TrackerName"] = value; }
        }
        protected override ConfigurationElement CreateNewElement()
        {
            return new tracker();
        }

        protected override object GetElementKey(ConfigurationElement element)
        {
            return ((tracker)element).Host;
        }
    }
    public class tracker : ConfigurationElement
    {
        #region 配置節設置,設定檔中有不能識別的元素、屬性時,使其不報錯

        protected override bool OnDeserializeUnrecognizedAttribute(string name, string value)
        {
            return base.OnDeserializeUnrecognizedAttribute(name, value);

        }

        protected override bool OnDeserializeUnrecognizedElement(string elementName, System.Xml.XmlReader reader)
        {
            return base.OnDeserializeUnrecognizedElement(elementName, reader);

        }
        #endregion

        [ConfigurationProperty("Host", DefaultValue = "localhost", IsRequired = true)]
        public string Host { get { return this["Host"].ToString(); } }

        [ConfigurationProperty("Port", DefaultValue = "22122", IsRequired = true)]
        public int Port { get { return (int)this["Port"]; } }

    }
}

    3.2  在CfgFiles新建TestConfigInfo.Config配置文件

<?xml version="1.0" encoding="utf-8" ?>
<TestConfigInfo TestName="lxsh" TestID="8893">
    <trackers TrackerName="testName">
        <add Host="60.195.251.71" Port="22122" />
        <add Host="60.195.251.72" Port="22123" />
        <add Host="60.195.251.73" Port="22124" />
    </trackers>
</TestConfigInfo>

   3.3  右鍵TestConfigInfo.Config屬性,選擇輸出目錄為始終複製,這樣操作目地是在運行目錄下麵生成該文件(其他配置文件也需要這樣操作)

 3.4  調用獲取配置信息代碼如下:

            Console.WriteLine("---------------------自定義新增節點測試-----------------");
            Console.WriteLine("TestID:" + TestConfigInfo.GetConfig().TestID);
            Console.WriteLine("TestName:" + TestConfigInfo.GetConfig().TestName);
            foreach (tracker item in TestConfigInfo.GetConfig().Trackers)
            {
                Console.WriteLine("Host:" + item.Host + " Port:" + item.Port);
            }

 3.5  運行效果如下圖:

 


4 系統appSettings配置文件單獨建立配置文件

       4.1 appconfig配置文件修改截圖如下

 

     4.2 system.config配置文件內容如下

 

     4.3 調用方式和沒有分開是一樣的,如下

  Console.WriteLine("---------------------系統自帶appSettings配置文件-----------------");
            Console.WriteLine("logLevel:" + System.Configuration.ConfigurationManager.AppSettings["logLevel"]);
            Console.WriteLine("LogType:" + System.Configuration.ConfigurationManager.AppSettings["LogType"]);

 四、四種方式演示源碼Github地址:https://github.com/lxshwyan/ConfigDemo.git


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

-Advertisement-
Play Games
更多相關文章
  • java虛擬機會對成員變數進行初始化 1 基本數據類型 1.1 整數類型 (byte,short,int,long)預設值為0 1.2 浮點型 單精度浮點型 float 預設值為 0.0f 雙精度浮點型 double 預設值為 0.0d 1.3 字元型 char 預設值為 \u0000 \u0000 ...
  • 高精度計算和豎式計算沒什麼區別,但由於數據很大需要用字元串讀入所以過程中可能會有一些小問題。高精度算是學oi的基本知識所以直接上我的優(chou)美(lou)代碼。 高精度演算法,屬於處理大數字的數學計算方法。在一般的科學計算中,會經常算到小數點後幾百位或者更多,當然也可能是幾千億幾百億的大數字。一般 ...
  • PHP+MySQL用戶註冊發送郵件激活賬號實例,樣式用的layui,簡潔美觀。 1.註冊發送郵件激活賬號,同時檢測郵箱是否已註冊。 2.檢測郵箱是否存在,當郵箱存在時判斷是否激活,若未激活,則更改激活碼和註冊時間。郵箱不存在時則發送激活郵件。 ...
  • 伺服器端代碼 客戶端代碼 運行視窗 1)客戶端 2)伺服器端 註意:客戶端和伺服器端不要運行在idle中,直接終端運行 ...
  • 利用運算符做為swich case 語句條件,實現簡單程式的編寫;並且對輸入的運算做判斷,除數為零也需做判斷; ...
  • 樹莓派是什麼 樹莓派就是一個卡片大小的迷你電腦。 安裝系統 有了電腦,我們當然得先安裝系統。 系統下載 https://www.raspberrypi.org/downloads/raspbian/ ,我選擇的Raspbian Stretch Lite,不帶界面的最小安裝。 下載win32diski ...
  • 使用 Visual Studio 2019 時出現的問題 環境:win10 ltsc 場景 發佈Web項目到FTP時 失敗,並提示 _無法打開網站"ftp://..."。未安裝與 FTP 伺服器進行通信所需的組件(或"Unable to open the Web site 'ftp://...'. ...
  • 截至`2019-05-08`共收集`27`個 `.NET Core ORM` 開源項目,`38`個 `.NET ORM` 開源項目。 收集地址:[https://github.com/orm-core-group](https://github.com/orm-core-group) ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...