码迷,mamicode.com
首页 > 移动开发 > 详细

[.net core]7 4种app key value的配置方法及优先顺序

时间:2019-08-03 23:45:58      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:优先级   warning   优先   set   val   environ   自己   sts   src   

就是这货

技术图片

点开查看内容

{
  "Logging": {
    "LogLevel": {
      "Default": "Warning"
    }
  },
  "AllowedHosts": "*"
}

可以在里面加上自己的key value配置 ,比如

{
  "Logging": {
    "LogLevel": {
      "Default": "Warning"
    }
  },
  "AllowedHosts": "*",
  "MyKey": "from appsetting.json"
}

 

然后使用依赖注入获取我刚才加入的MyKey

1.为Startup类创建构造函数, 使用构造函数注入

技术图片

2把注入的实例存到私有字段

 

技术图片

 

3.使用这个存起来的实例

技术图片

4.查看运行效果

技术图片

 

除了在appsetting.json里配置,还可以在特定的环境,比如开发环境

技术图片

 

 

 原来的配置

{
  "Logging": {
    "LogLevel": {
      "Default": "Debug",
      "System": "Information",
      "Microsoft": "Information",
    }
  }
}

改成

{
  "Logging": {
    "LogLevel": {
      "Default": "Debug",
      "System": "Information",
      "Microsoft": "Information",
    }
  },
  "MyKey": "from appsettings.Development.json"
}

这时我配置了两个MyKey ,但是效果是

技术图片

还可以launchSettings.json,我将他加在iis espress调试选项里

  "profiles": {
    "IIS Express": {
      "commandName": "IISExpress",
      "launchBrowser": true,
      "environmentVariables": {
        "": "",
        "ASPNETCORE_ENVIRONMENT": "Development",
        "MyKey": "from LaunchSetting.json"
      }
    },

这时我配置了3个MyKey  但是运行效果起来效果是

技术图片

还可以用命令行传参  比如

技术图片

 

 这时有4个地方建立了MyKey,但是运行效果是

技术图片

 

 至此总结了  .net core4种创建 key value 的方式,以及它们的优先级别.

 

[.net core]7 4种app key value的配置方法及优先顺序

标签:优先级   warning   优先   set   val   environ   自己   sts   src   

原文地址:https://www.cnblogs.com/nocanstillbb/p/11296641.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!