在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
配置文件是每个项目最基础的部分,也是不可或缺的部分,比如:数据库连接、中间件属性等常见的配置。 今天这篇文章主要内容就是,在.Net Core项目中怎样去读取配置文件并使用。 提前准备appsettings.json 文件 { "User": { "userName": "赵一", "userAge": 18 } } 对应实体模型 public class UserOption { public string userName { get; set; } public int userAge { get; set; } } 常规读取1、注册在 startup 类中注册,主要用到的是 Configure 方法: services.Configure<UserOption>(Configuration.GetSection("User")); 2、控制器中注入并读取public class HomeController : ControllerBase { private readonly UserOption user; public HomeController(IOptions<UserOption> userOptions) { user = userOptions.Value; } [HttpGet] public string Get() { return $"姓名:{user.userName},年龄:{user.userAge} "; } } 输出结果: 嵌套读取我们对 appsettings.json 文件做一点小小的改动,增加一个子节点 { "User": { "userName": "赵一", "userAge": 18, "child": { "userName": "赵一的崽", "userAge": 2 } } } 再对注册的代码做一点小小的修改: services.Configure<UserOption>(Configuration.GetSection("User:child")); 输出结果: 分实例读取这个时候需求又有变化了,需要同时读取 // 注册 services.Configure<UserOption>(Configuration.GetSection("User")); services.Configure<UserOption>(Configuration.GetSection("User:child")); // 控制器 public class HomeController : ControllerBase { private readonly UserOption user; private readonly UserOption child; public HomeController(IOptions<UserOption> userOptions, IOptions<UserOption> childOptions) { user = userOptions.Value; child = childOptions.Value; } [HttpGet] public string Get() { return $"姓名:{user.userName},年龄:{user.userAge} \r\n姓名:{child.userName},年龄:{child.userAge}"; } } 输出结果很显然满足不了我们的需求: 姓名:赵一的崽,年龄:2 姓名:赵一的崽,年龄:2 有的小伙伴肯定会说,在实体模型内在加一个子节点字段。这样肯定是没问题的,但是与常规读取方式就没什么两样了。 这里我要说的是分实例读取,引入 public static IServiceCollection Configure<TOptions>(this IServiceCollection services, string name, IConfiguration config) where TOptions : class; 下面我们重新注册: services.Configure<UserOption>("father", Configuration.GetSection("User")); services.Configure<UserOption>("son", Configuration.GetSection("User:child")); 在控制器构造函数中注入,也引入了一个新的接口对象: public class HomeController : ControllerBase { private readonly UserOption user; private readonly UserOption child; public HomeController(IOptionsMonitor<UserOption> userOptions, IOptionsMonitor<UserOption> childOptions) { user = userOptions.Get("father"); child = childOptions.Get("son"); } [HttpGet] public string Get() { return $"姓名:{user.userName},年龄:{user.userAge} \r\n姓名:{child.userName},年龄:{child.userAge}"; } 输出结果: 姓名:赵一,年龄:18 姓名:赵一的崽,年龄:2 其实还有一个接口对象能实现这样的效果: IOptionsMonitor与IOptionsSnapshot的不同之处我们先来看看微软官方的注释: IOptionsMonitor // // 摘要: // Used for notifications when TOptions instances change. // // 类型参数: // TOptions: // The options type. public interface IOptionsMonitor<out TOptions> { // // 摘要: // Returns the current TOptions instance with the Microsoft.Extensions.Options.Options.DefaultName. TOptions CurrentValue { get; } // // 摘要: // Returns a configured TOptions instance with the given name. TOptions Get(string name); // // 摘要: // Registers a listener to be called whenever a named TOptions changes. // // 参数: // listener: // The action to be invoked when TOptions has changed. // // 返回结果: // An System.IDisposable which should be disposed to stop listening for changes. IDisposable OnChange(Action<TOptions, string> listener); } IOptionsSnapshot // // 摘要: // Used to access the value of TOptions for the lifetime of a request. // // 类型参数: // TOptions: // Options type. public interface IOptionsSnapshot<out TOptions> : IOptions<TOptions> where TOptions : class, new() { // // 摘要: // Returns a configured TOptions instance with the given name. TOptions Get(string name); } 从字面上理解, IOptionsMonitor 与 IOptionsSnapshot的生命周期我们对实体模型再做一点小小的修改,增加一个 guid 字段,并给上默认值: public class UserOption { public string userName { get; set; } public int userAge { get; set; } public Guid guid { get; set; } = Guid.NewGuid(); } 我们再次运行程序: father — 姓名:赵一,年龄:19,编号:e0d71f47-e8f1-4a6d-875e-2074c985f4a0 son — 姓名:赵一的崽,年龄:3,编号:d865151b-f9bf-4eff-bb4e-8ab6dc61160c 然后不停的刷新页面会发现, services.AddScoped(); services.AddTransient(); services.AddSingleton() 其中 大家可以在同一个方法里多次调用 IOptionsMonitor的OnChange调用方式userOptions.OnChange((user,name)=> { Console.WriteLine(user.userName +"-"+ name); }); 无文件配置无文件配置就是不需要以静态文件的方式进行配置。相关信息在配置一次后就不用再做修改,我们可以采用无文件配置的方式,比如我们熟悉的 services.AddCors(op => { op.AddPolicy(CorsName, set => { set.SetIsOriginAllowed(origin => true).AllowAnyHeader().AllowAnyMethod().AllowCredentials(); }); }); 我们对之前的注册方法进行一下改动: services.Configure<UserOption>(c => { c.userName = "钱二"; c.userAge = 60; }); 控制器注入采用常规的注入方式,最终输出结果: 分享一个源码查看网站:https://source.dot.net/ 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持极客世界。 |
请发表评论