ASP.NET core Web中使用appsettings.json配置文件的方法
程序员文章站
2024-02-08 08:23:04
前言
最近在研究把asp.net程序移植到linux上,正好.net core出来了,就进行了学习。
移植代码基本顺利,但是发现.net core中没有configur...
前言
最近在研究把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": "http://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配置文件的方法
-
ASP.NET Core Web 应用程序系列(三)- 在ASP.NET Core中使用Autofac替换自带DI进行构造函数和属性的批量依赖注入(MVC当中应用)
-
ASP.NET Core 中使用EF Core 将实体映射到数据库表的方法(SQL Server)
-
使用ASP.NET Core支持GraphQL -- 较为原始的方法
-
ASP.NET Core MVC 过滤器的使用方法介绍
-
ASP.net core 2.0.0 中 asp.net identity 2.0.0 的基本使用(二)—启用用户管理
-
Hangfire在ASP.NET CORE中的简单实现方法
-
asp.net中System.Timers.Timer的使用方法_javascript技巧
-
ASP.NET MVC中图表控件的使用方法
-
灵活掌握asp.net中gridview控件的多种使用方法(下)