前言
首先开一个脑洞,Asp.net core 被使用这么长时间了,但是关于配置文件(json)的读取,微软官方似乎并没有给出像.net framework读取web.config那样简单且完美。严重怀疑这是微软为了促进.net core 生态繁荣搞的一点小手段。
appsetting.Development.json (appsetting.json的内容和这个差不多,下面会讲到多环境使用)
{ "SettingPath": { "VideoFilePath": "C:\\Users\\89275\\Desktop\\Projects\\mv", "FfmpegPath": "C:/Users/89275/Desktop/Projects/mv/ffmpeg.exe", "FtpPath": "http://192.168.254.1/videofile", "VirtualPath": "/videoplay" }, "RedisPath":"192.168.0.108:6379" }
看了很多Asp.net core 读取配置文件的博客,感觉都没有很好的解决问题。
- 最简单的就是在StartUp中通过Configuration["SettingPath:VirtualPath"]的形式获取信息;
- 接下来就是在Controller中获去配置文件信息,在控制器中读取配置文件有两种方法。
第一种是在controller初始化的时候把IHostingEnvironment,IConfiguration传过来,然后把穿过来的值赋给controller中对应的变量,酒后就可以正常读取配置文件了(由于我是个菜逼,还没看明白系统启动的时候,这两个变量是怎么传给controller的)
public class HomeController : Controller { //环境变量 private readonly IHostingEnvironment hostingEnvironment; private IConfiguration Configuration; public HomeController(IHostingEnvironment hostingEnvironment, IConfiguration configuration) { this.hostingEnvironment = hostingEnvironment; Configuration = configuration; } pubilc void GetRedisPath() { string redisPath = Configuration["RedisPath"]; } }
第二种是通过获取对象的方式读取配置文件,最近很多博客说的都是关于这个的。还是在controller初始化的时候把IOptions传进来(这里我还是没懂怎么传过来的/(ㄒoㄒ)/~~),然后把传过来的值赋值给Model的对象,然后就可以正常使用了。
这种方法需要在StartUp中的ConfigureServices中有添加
services.AddOptions(); //SettingPath极为Model services.Configure<SettingPath>(Configuration.GetSection("SettingPath"));
public class HomeController { public SettingPath settingPath; private ILog log = LogManager.GetLogger(Startup.repository.Name, typeof(VideosController)); public HomeController(IOptions<SettingPath> option) { settingPath = option.Value; } public void GetVideoPath() { string path=SettingPath.VideoFilePath } }
这里因为我不了解,IOptions是怎么传进来的,所以不知道如果有需要只用两个或以上Model的情况该怎么处理。
.net core 读取配置文件公共类
前面几种方法之前都有用过,但是个人感觉用起来都不是很顺手。而且如果想要在一个类库中读取配置文件的话简直痛苦到不想理媳妇。
所以自己动手写了一个工具类
using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Options; using System; namespace Common { public class ConfigurationHelper { public IConfiguration config { get; set; } public ConfigurationHelper() { IHostingEnvironment env = MyServiceProvider.ServiceProvider.GetRequiredService<IHostingEnvironment>(); config = new ConfigurationBuilder() .SetBasePath(env.ContentRootPath) .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true) .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true) .AddEnvironmentVariables() .Build(); } public T GetAppSettings<T>(string key) where T : class, new() { var appconfig = new ServiceCollection() .AddOptions() .Configure<T>(config.GetSection(key)) .BuildServiceProvider() .GetService<IOptions<T() .Value; return appconfig; } } //我比较喜欢单独放这个类,但是这样放更明显 public class MyServiceProvider { public static IServiceProvider ServiceProvider { get; set; } } }
使用这个类的话需要在StartUp的Configure中添加
MyServiceProvider.ServiceProvider = app.ApplicationServices;
然后就可以在任何地方使用此类读取配置文件信息了,而且由于ConfigurationHelper初始化时已经默认加载环境变量,所以同时具备多环境功能。
string path = new ConfigurationHelper().config["RedisPath"]; SettingPath pathss = new ConfigurationHelper().GetAppSettings<SettingPath>("SettingPath");
参考
- https://docs.microsoft.com/zh-cn/aspnet/core/fundamentals/configuration/"external nofollow" target="_blank" href="https://docs.microsoft.com/zh-cn/aspnet/core/fundamentals/environments">https://docs.microsoft.com/zh-cn/aspnet/core/fundamentals/environments"_blank" href="https://www.jb51.net/article/125674.htm">https://www.jb51.net/article/125674.htm
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]