【無私分享:ASP.NET CORE 項目實戰(第六章)】讀取配置文件(一) appsettings.json

 

目錄索引 

 

【無私分享:ASP.NET CORE 項目實戰】目錄索引html

 

簡介

 

  在咱們以前的Asp.net mvc 開發中,一提到配置文件,咱們不禁的想到 web.configapp.config,在 core 中,咱們看到了不少的變化,新的配置系統顯得更加輕量級,具備更好的擴展性,而且支持多樣化的數據源。web

  博客園對於這個的講解不少,好比:Artche ,可是,沒有點基礎看老A的博客仍是有些吃力的,對於老A介紹的配置,我也是看的一頭霧水,在後面的文章中,我會用像咱們這些菜鳥容易接受的方式,從新解釋一下。json

  今天,咱們以 appsettings.json 爲例,讀取一些簡單的系統配置。
mvc

 

 

appsettings.json

 

    第二章 中,咱們在講到EF上線文時,在 Startup.cs 添加 services.AddDbContext<ApplicationDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SqlServerConnection"))); 已經使用到了 appsettings.json app

  咱們添加一些簡單的系統配置,來演示一下讀取 appsettings.json:post

  

  {
    "ApplicationInsights": {
      "InstrumentationKey": ""
    },
    "ConnectionStrings": {
      "SqlServerConnection": "Server=.;Database=db_wkmvc;User ID=sa_wkmvc;Password=123456;"
    },
    "Logging": {
      "IncludeScopes": false,
      "LogLevel": {
        "Default": "Debug",
        "System": "Information",
        "Microsoft": "Information"
      }
    },
    "ApplicationConfiguration": {
      //文件上傳路徑
      "FileUpPath": "/upload/",
      //是否啓用單用戶登陸
      "IsSingleLogin": "True",
      //容許上傳的文件格式
      "AttachExtension": "gif,jpg,jpeg,png,bmp,rar,zip,doc,docx,xls,xlsx,ppt,pptx,txt,flv,apk,mp4,mpg,ts,mpeg,mp3,bak,pdf",
      //圖片上傳最大值KB
      "AttachImagesize": 12400
    }
  }學習

 

咱們添加一個配置類 ApplicationConfiguration測試

 

 1 public class ApplicationConfiguration
 2     {
 3         #region 屬性成員
 4 
 5         /// <summary>
 6         /// 文件上傳路徑
 7         /// </summary>
 8         public string FileUpPath { get; set; }
 9         /// <summary>
10         /// 是否啓用單用戶登陸
11         /// </summary>
12         public bool IsSingleLogin { get; set; }
13         /// <summary>
14         /// 容許上傳的文件格式
15         /// </summary>
16         public string AttachExtension { get; set; }
17         /// <summary>
18         /// 圖片上傳最大值KB
19         /// </summary>
20         public int AttachImagesize { get; set; }
21         #endregion
22     }

 

 

  Startup.cs 的 ConfigureServices 添加url

  services.Configure<ApplicationConfiguration>(Configuration.GetSection("ApplicationConfiguration"));spa

  

 

添加一個領域層 AppConfigurtaionServices

 

  public class AppConfigurtaionServices
  {
    private readonly IOptions<ApplicationConfiguration> _appConfiguration;
    public AppConfigurtaionServices(IOptions<ApplicationConfiguration> appConfiguration)
    {
      _appConfiguration = appConfiguration;
    }

    public ApplicationConfiguration AppConfigurations
    {
      get
        {
          return _appConfiguration.Value;
        }
    }
  }  

   添加引用 using Microsoft.Extensions.Options;

  

  咱們來測試一下:

  

 

 

  測試結果:

  

 

 

 

 

 

但願跟你們一塊兒學習Asp.net Core 

剛開始接觸,水平有限,不少東西都是本身的理解和翻閱網上大神的資料,若是有不對的地方和不理解的地方,但願你們指正!

雖然Asp.net Core 如今很火熱,可是網上的不少資料都是前篇一概的複製,因此有不少問題我也暫時沒有解決,但願你們能共同幫助一下!

 

原創文章 轉載請尊重勞動成果 http://yuangang.cnblogs.com

相關文章
相關標籤/搜索