.net core 读取配置的几种方式
创始人
2024-03-19 02:19:12
0

json配置文件示例 

{"Logging": {"LogLevel": {"Default": "Information","Microsoft.AspNetCore": "Warning"}},"Account": {"username": "zhangsan","password":"123"},"AllowedHosts": "*"
}

例如读取Account节点数据

方法一

string username = builder.Configuration["Account:username"];
string password = builder.Configuration["Account:password"];

方法二


string username = builder.Configuration.GetSection("Account:username").Value;
string password = builder.Configuration.GetSection("Account:password").Value;

方法三

string username = builder.Configuration.GetValue("Account:username");
string password = builder.Configuration.GetValue("Account:password");

在增加一个数组的节点

{"Logging": {"LogLevel": {"Default": "Information","Microsoft.AspNetCore": "Warning"}},"Account": {"username": "zhangsan","password": "123"},"Port": [1,2,3,4],"AllowedHosts": "*"
}

用泛型方法builder.Configuration.GetVaue("key")读取配置的,结果返回null

 对于数组我们只能这样读取

 var Port0 = builder.Configuration.GetValue("Port:0");var Port1 = builder.Configuration.GetValue("Port:1");var Port2 = builder.Configuration.GetValue("Port:2");var Port3 = builder.Configuration.GetValue("Port:3");

因为配置文件都是键值的形式存在,而对于数组而言,下标就是它的键,通过下标找到对应的值 

对于这样太繁琐,我想返回跟配置一样的数组形式 可以这样

var Port=builder.Configuration.GetSection("Port").GetChildren().Select(x => x.Value).ToArray();

运行结果 ,得到我们想要的

 

 方法四

新建一个类,跟配置文件节点名保持一致

public class Account {public string username { get; set; }public string password { get; set; }
}

找到这个节点绑定到这个类

  Account account = new Account();builder.Configuration.Bind("Account", account);

 运行结果

 

 同理

 对于前面读取数组,也能用绑定方式获取

List Port = new List();    
builder.Configuration.Bind("Port", Port);

以上都是在Program.cs中读取,如何在控制器中读取呢

在Program.cs中加入

 builder.Services.Configure(builder.Configuration.GetSection("Account"));

在控制器中注入

 private readonly IOptionsSnapshot optAccountSettings

在接口中

 [HttpGet]public IActionResult Account(){var db = _optAccountSettings.Value;return Ok(db);
}

 返回结果

 

相关内容

热门资讯

AWSECS:访问外部网络时出... 如果您在AWS ECS中部署了应用程序,并且该应用程序需要访问外部网络,但是无法正常访问,可能是因为...
银河麒麟V10SP1高级服务器... 银河麒麟高级服务器操作系统简介: 银河麒麟高级服务器操作系统V10是针对企业级关键业务...
AWSElasticBeans... 在Dockerfile中手动配置nginx反向代理。例如,在Dockerfile中添加以下代码:FR...
【NI Multisim 14...   目录 序言 一、工具栏 🍊1.“标准”工具栏 🍊 2.视图工具...
​ToDesk 远程工具安装及... 目录 前言 ToDesk 优势 ToDesk 下载安装 ToDesk 功能展示 文件传输 设备链接 ...
北信源内网安全管理卸载 北信源内网安全管理是一款网络安全管理软件,主要用于保护内网安全。在日常使用过程中,卸载该软件是一种常...
AWR报告解读 WORKLOAD REPOSITORY PDB report (PDB snapshots) AW...
AWS管理控制台菜单和权限 要在AWS管理控制台中创建菜单和权限,您可以使用AWS Identity and Access Ma...
群晖外网访问终极解决方法:IP... 写在前面的话 受够了群晖的quickconnet的小水管了,急需一个新的解决方法&#x...
不能访问光猫的的管理页面 光猫是现代家庭宽带网络的重要组成部分,它可以提供高速稳定的网络连接。但是,有时候我们会遇到不能访问光...