如何将ASP.NET core Web项目中的appsettings.json配置文件应用方法进行详细改写?

2026-04-01 09:301阅读0评论SEO教程
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计397个文字,预计阅读时间需要2分钟。

如何将ASP.NET core Web项目中的appsettings.json配置文件应用方法进行详细改写?

前言:最近在研究将asp.net程序移植到Linux上,因为.NET Core出来了,就进行了学习。+ 移植代码基本遵循基本原理,但发现.NET Core中没有ConfigurationManager,无法读写配置文件,单独写个xml类的配置文件比较麻烦。

前言

最近在研究把asp.net程序移植到linux上,正好.net core出来了,就进行了学习。

移植代码基本顺利,但是发现.net core中没有ConfigurationManager,无法读写配置文件,单独写个xml之类的嫌麻烦,就谷歌了下,发现了个方法,遂记录如下,方便以后查找:

方法如下

配置文件结构

public class DemoSettings { public string MainDomain { get; set; } public string SiteName { get; set; } }

appsettings.json中显示效果

appsettings.json

{ "DemoSettings": { "MainDomain": "www.mysite.com", "SiteName": "My Main Site" }, "Logging": { "IncludeScopes": false, "LogLevel": { "Default": "Debug", "System": "Information", "Microsoft": "Information" } } }

配置Services

原配置

public void ConfigureServices(IServiceCollection services) { // Add framework services. services.AddMvc(); }

自定义

public void ConfigureServices(IServiceCollection services) { // Add framework services. services.AddMvc(); // Added - uses IOptions<T> for your settings. services.AddOptions(); // Added - Confirms that we have a home for our DemoSettings services.Configure<DemoSettings>(Configuration.GetSection("DemoSettings")); }

然后把设置注入进相应的Controller后就可以使用了

public class HomeController : Controller { private DemoSettings ConfigSettings { get; set; } public HomeController(IOptions<DemoSettings> settings) { ConfigSettings = settings.Value; } public IActionResult Index() { ViewData["SiteName"] = ConfigSettings.SiteName; return View(); } }

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对易盾网络的支持。

如何将ASP.NET core Web项目中的appsettings.json配置文件应用方法进行详细改写?

本文共计397个文字,预计阅读时间需要2分钟。

如何将ASP.NET core Web项目中的appsettings.json配置文件应用方法进行详细改写?

前言:最近在研究将asp.net程序移植到Linux上,因为.NET Core出来了,就进行了学习。+ 移植代码基本遵循基本原理,但发现.NET Core中没有ConfigurationManager,无法读写配置文件,单独写个xml类的配置文件比较麻烦。

前言

最近在研究把asp.net程序移植到linux上,正好.net core出来了,就进行了学习。

移植代码基本顺利,但是发现.net core中没有ConfigurationManager,无法读写配置文件,单独写个xml之类的嫌麻烦,就谷歌了下,发现了个方法,遂记录如下,方便以后查找:

方法如下

配置文件结构

public class DemoSettings { public string MainDomain { get; set; } public string SiteName { get; set; } }

appsettings.json中显示效果

appsettings.json

{ "DemoSettings": { "MainDomain": "www.mysite.com", "SiteName": "My Main Site" }, "Logging": { "IncludeScopes": false, "LogLevel": { "Default": "Debug", "System": "Information", "Microsoft": "Information" } } }

配置Services

原配置

public void ConfigureServices(IServiceCollection services) { // Add framework services. services.AddMvc(); }

自定义

public void ConfigureServices(IServiceCollection services) { // Add framework services. services.AddMvc(); // Added - uses IOptions<T> for your settings. services.AddOptions(); // Added - Confirms that we have a home for our DemoSettings services.Configure<DemoSettings>(Configuration.GetSection("DemoSettings")); }

然后把设置注入进相应的Controller后就可以使用了

public class HomeController : Controller { private DemoSettings ConfigSettings { get; set; } public HomeController(IOptions<DemoSettings> settings) { ConfigSettings = settings.Value; } public IActionResult Index() { ViewData["SiteName"] = ConfigSettings.SiteName; return View(); } }

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对易盾网络的支持。

如何将ASP.NET core Web项目中的appsettings.json配置文件应用方法进行详细改写?