在 .NET Core 項目中,配置文件有着舉足輕重的地位;與.NetFramework 不一樣的是,.NET Core 的配置文件都以 .json 結尾,這表示一個標準的 json 格式的文件;一個標準的 Asp.Net Core MVC 項目,必定帶着一個 appsettings.json 文件,該文件即是項目默認配置文件,這和基於 .NetFramework 建立的 Asp.Net Web Application (默認配置名稱:App.config) 有着根本的不一樣,今天咱們就學習如何添加自定義配置到文件中,並把該配置在程序中讀取出來;而後再經過使用 host.json 這個配置文件使程序運行於多個端口。css
1.1 appsettings.json 文件是一個標準的 json 結構的文件,這表示你只要按照 json 的結構寫入該文件,不管什麼內容,都能在程序中自動讀取,當咱們建立好 MVC 項目後,系統就自動幫咱們建立好 appsettings.json 文件,其默認內容以下:java
{
"Logging": { "LogLevel": { "Default": "Warning" } }, "AllowedHosts": "*" }
1.2 下面咱們加一個配置節點 "book":"博客園精華文章選集"json
{
"Logging": { "LogLevel": { "Default": "Warning" } }, "AllowedHosts": "*", "book":"博客園精華文章選集" }
1.3 在控制器 Controllers/HomeController.cs 中將該節點內容設置爲網頁標題輸出,記得引用命名空間app
using Microsoft.Extensions.Configuration;
在 Index 方法中加入參數 IConfiguration,以下學習
public IActionResult Index([FromServices]IConfiguration cfg) { return View(); }
1.4 輸入命令 dotnet run 啓動項目,結果以下,讀取自定義配置成功ui
1.5 將配置文件節點轉換爲實體類url
{
"Logging": { "LogLevel": { "Default": "Warning" } }, "AllowedHosts": "*", "book":"博客園精華文章選集", "customer":{ "name":"ron.liang", "gender":"man", "job":"coder" } }
public class Customer{ public string Name { get; set; } public string Gender{get;set;} public string Job{get;set;} }
{
"server.urls": "http://0.0.0.0:12006;http://0.0.0.0:12007" }
public static IWebHostBuilder CreateWebHostBuilder(string[] args) { var hostConfiguration = new ConfigurationBuilder().AddJsonFile("hosting.json").Build(); return WebHost.CreateDefaultBuilder(args) .UseStartup<Startup>() .UseConfiguration(hostConfiguration); }