首頁  >  文章  >  後端開發  >  .NET Core設定檔載入與DI注入設定數據

.NET Core設定檔載入與DI注入設定數據

高洛峰
高洛峰原創
2017-05-26 13:33:002890瀏覽

.NET Core設定檔

在以前.NET中設定檔都是以App.config / Web.config等XML格式的設定文件,而.NET Core建議使用以JSON為格式的設定文件,因為使用起來更有彈性,可以使用.NET Core中的DI注入配置資料。

使用:

var config = new ConfigurationBuilder()
                .AddInMemoryCollection()    //将配置文件的数据加载到内存中
                .SetBasePath(Directory.GetCurrentDirectory())   //指定配置文件所在的目录
                .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)  //指定加载的配置文件
                .Build();    //编译成对象  
            Console.WriteLine(config["test"]);  //获取配置中的数据
            config["test"] = "test test";   //修改配置对象的数据,配置对象的数据是可以被修改的
            Console.WriteLine(config["test11"]);    //获取配置文件中不存在数据也是不会报错的
            Console.WriteLine(config["theKey:nextKey"]);    //获取:theKey -> nextKey 的值

設定檔appsettings.json檔案內容:

{
  "test": "testVal",
  "theKey": {
    "nextKey": "keyVal"
  }
}

注意:

ConfigurationBuilder需要新增套件:"Microsoft.Extensions.Configuration"

 

與DI搭配使用

var sp = new ServiceCollection()
                .AddOptions()   //注入IOptions<T>,这样就可以在DI容器中获取IOptions<T>了
                .Configure<TestCls>(config.GetSection("TestCls"))   //注入配置数据
                //也可以对注入的配置数据进行修改
                .Configure<TestCls>(t =>
                {
                    t.Name = "Jame"; //修改Name的值
                })
                .BuildServiceProvider();    //编译

            var test = sp.GetService<IOptions<TestCls>>();    //获取注入的配置数据对象
            Console.WriteLine(JsonConvert.SerializeObject(test.Value));    //{"Name":"Jame","Age":123}

            //下面的代码中检验Configure注入的配置数据对象是单例模式的(.NET Core中DI容器的三种生命周期:Singleton(单例), Scoped(作用域), Transient(瞬态))
            var test1 = sp.GetService<IOptions<TestCls>>();
            Console.WriteLine(test == test1);   //true
            //创建一个新的作用域获取配置数据对象
            var test2 = sp.GetService<IServiceScopeFactory>().CreateScope().ServiceProvider.GetService<IOptions<TestCls>>();
            Console.WriteLine(test == test2);   //true

 配置測試類別:

         public class TestCls
         {
             public string Name { get; set; }
             public int Age { get; set; }
         }

appsettings.json中的內容:

{
  "TestCls": {
    "Name": "Tom",
    "Age": 123
  }
}

: "Microsoft.Extensions.Options.ConfigurationExtensions"

 

ASP.NET Core中使用

Startup.cs -> Startup構造方法中進行初始化設定檔:

var builder = new ConfigurationBuilder()
                .AddInMemoryCollection()
                .SetBasePath(env.ContentRootPath)
                .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
                .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true);
            Configuration = builder.Build();

StartStartup.cs -> Startup構造方法中進行初始化設定檔:

services.AddOptions()        //注入IOptions<T>
                .Configure<TestCls>(Configuration.GetSection(nameof(TestCls)))
                .Configure<TestCls>(test =>
                {
                    test.Name = "Jame"; //修改Name的值
                });

StartStart.數據:

{
  "Logging": {
    "IncludeScopes": false,
    "LogLevel": {
      "Default": "Debug",
      "System": "Information",
      "Microsoft": "Information"
    }
  },
  "TestCls": {
    "Name": "Tom",
    "Age": 123
  }
}

配置文件中的配置數據:

[Route("api/[controller]")]
    public class ValuesController : Controller
    {
        IOptions<TestCls> _test;
        public ValuesController(IOptions<TestCls> test)
        {
            _test = test;
        }
        [HttpGet]
        public string Gets()
        {
            return JsonConvert.SerializeObject(_test.Value);
        }

注入到控制器中:

rrreee

訪問:/api/values

顯示:{"Name":"Jame","Age":123}

【相關推薦】

1. 

.Net Core 圖形驗證碼

2. .NET Core CLI工具文件dotnet-publish

3.  詳細介紹。

分享.net MVC中使用forms驗證實例代碼

5. 

在.net core 下如何進行http請求?

6. 

CentOS上執行ZKEACMS的實例教學

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn