服务器之家

服务器之家 > 正文

.net core 静态类获取appsettings的方法

时间:2021-11-26 15:25     来源/作者:古道

注入获取

注入获取通过IConfiguration直接获取的方法官方文档里就有,可以直接看这里

如:appsettings.json

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "Position": {
    "Title": "编辑器",
    "Name": "Joe Smith"
  },
  "MyKey": "My appsettings.json Value",
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft": "Warning",
      "Lifetime": "Information"
    }
  },
  "AllowedHosts": "*"
}

可以用注入的IConfiguration,用冒号分隔的形式取值,如下

?
1
var name = Configuration["Position:Name"];

实体类获取

单个获取对应多个组合的值就不太方便,比如Logging最好能用一个类类直接接收,方法如下:
先定义一个跟json节点对应的类

?
1
2
3
4
5
6
7
8
9
10
public class Logging
 {
   public LogLevel LogLevel { get; set; }
 }
 public class LogLevel
 {
   public string Default { get; set; }
   public string Microsoft { get; set; }
   public string Lifetime { get; set; }
 }

然后在Startup的里ConfigureServices增加

?
1
services.Configure<Logging>(Configuration.GetSection("Logging"));

调用的地方直接注入

?
1
2
3
4
5
private readonly Logging _config;
public HomeController(IOptions<Logging> config)
{
  _config = config.Value;
}

静态类获取

如果是在静态类里使用,可以在Startup里的构造函数中这样写

?
1
2
3
4
5
public Startup(IConfiguration configuration)
    {
      Configuration = configuration;
      configuration.GetSection("Logging").Bind(MySettings.Setting);
    }

使用IConfigurationSection的Bind方法将节点直接绑定至一个实例上,注意示例必须是初始化过的。

?
1
2
3
4
public static class MySettings
  {
    public static Logging Setting { get; set; } = new Logging();
  }

有了静态类的属性在在静态类里就可以使用了。

到此这篇关于.net core 静态类获取appsettings的方法的文章就介绍到这了,更多相关.net core获取appsettings内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://www.cnblogs.com/gudao119/p/13190084.html

相关文章

热门资讯

yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部