ASP.NET Core中修改配置文件后自动加载新配置的方法详解
前言
在 asp.net core 默认的应用程序模板中, 配置文件的处理如下面的代码所示:
config.addjsonfile( path: "appsettings.json", optional: true, reloadonchange: true ); config.addjsonfile( path: $"appsettings.{env.environmentname}.json", optional: true, reloadonchange: true );
appsettings.json 和 appsettings.{env.environmentname}.json 两个配置文件都是可选的, 并且支持当文件被修改时能够重新加载。
可以在 asp.net core 应用中利用这个特性, 实现修改配置文件之后, 不需要重启应用, 自动加载修改过的配置文件, 从而减少系统停机的时间。 实现的步骤如下:
使用配置 api 进行注入
假设要在程序中注入这样一个配置类型:
public class weatheroption { public string city { get; set; } public int refreshinterval { get; set; } }
在 appsettings.json 中添加的配置如下:
{ "weather": { "city": "guangzhou", "refreshinterval": 120 } }
在 startup.cs 的 configureservices 方法中使用配置 api 进行注入, 代码如下:
public void configureservices(iservicecollection services) { services.configure<weatheroption>(configuration.getsection("weather")); services.addcontrollers(); }
这个步骤很关键, 通过这个配置 api 可以把注入内容和配置所在的节点关联起来。 如果有兴趣了解底层实现的话, 可以继续查看这个 optionsconfigurationservicecollectionextensions.cs 。
通过这种方式注册的内容, 都是支持当配置文件被修改时, 自动重新加载的。
在控制器 (controller) 中加载修改过后的配置
控制器 (controller) 在 asp.net core 应用的依赖注入容器中注册的生命周期是 scoped , 即每次请求都会创建新的控制器实例。 这样只需要在控制器的构造函数中注入 ioptionssnapshot<toption> 参数即可, 代码如下:
[apicontroller] [route("[controller]")] public class weatherforecastcontroller : controllerbase { private weatheroption option; public weatherforecastcontroller( ioptionssnapshot<weatheroption> options ) { this.option = options.value; } // get /weatherforcase/options [httpget("options")] public actionresult<weatheroption> getoption() { return options; } }
当然, 如果不希望在控制器中使用这个 ioptionssnapshot 接口类型(会带来一些对现有代码重构和修改, 还是有一定的风险的), 可以在 configureservices 中添加对 weatheroption 的注入, 代码如下:
public void configureservices(iservicecollection services) { services.configure<weatheroption>(configuration.getsection("weather")); // 添加对 weatheroption 的注入, 生命周期为 scoped , 这样每次请求都可以获取新的配置值。 services.addscoped(serviceprovider => { var snapshot = serviceprovider.getservice<ioptionssnapshot<weatheroption>>(); return snapshot.value; }); services.addcontrollers(); }
这样在控制器中就不需要注入 ioptionssnapshot<t> 类型了, 最终控制器的代码如下:
[apicontroller] [route("[controller]")] public class weatherforecastcontroller : controllerbase { private weatheroption option; public weatherforecastcontroller( weatheroption option ) { this.option = option; } // get /weatherforcase/options [httpget("options")] public actionresult<weatheroption> getoption() { return options; } }
这样控制器就无需修改任何代码即可加载修改过后的新配置。
在中间件 (middleware) 中加载修改过后的配置
中间件 (middleware) 在 asp.net core 应用的依赖注入容器中注册的生命周期是 singleton , 即单例的, 只有在当应用启动时, 根据中间件创建处理连时创建一次全局实例, 所以只能通过注入 ioptionsmonitor<t> 来监听配置文件的修改情况, 示例代码如下:
public class testmiddleware { private requestdelegate next; private weatheroption option; public testmiddleware( requestdelegate next, ioptionsmonitor<weatheroption> monitor ) { this.next = next; option = monitor.currentvalue; // moni config change monitor.onchange(newvalue => { option = newvalue; }); } public async task invoke(httpcontext context) { await context.response.writeasync(jsonserializer.serialize(option)); } }
当然, 在中间件的 task invoke(httpcontext context) 方法中, 直接获取 ioptionssnapshot<t> 也是可以的, 代码如下:
public async task invoke(httpcontext context) { var snapshot = context.requestservices.getservice<ioptionssnapshot<weatheroption>>(); await context.response.writeasync(jsonserializer.serialize(snapshot.value)); }
但是这么做的话, 似乎就偏离了依赖注入的原则了, 因此不推荐这种做法。
总结
到此这篇关于asp.net core中修改配置文件后自动加载新配置的文章就介绍到这了,更多相关asp.net core自动加载新配置内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 中小互联网创业者生存与发展现状