时间:2021-05-18
我已经通读了 MSDN 上关于 Configuration 的相关内容,文档说可实现在 application 的任意位置访问 Configuration .
下面是 Startup.cs 的模板代码。
publicclassStartup{publicStartup(IHostingEnvironmentenv){varbuilder=newConfigurationBuilder().SetBasePath(env.ContentRootPath).AddJsonFile("appsettings.json",optional:true,reloadOnChange:true).AddJsonFile($"appsettings.{env.EnvironmentName}.json",optional:true);if(env.IsEnvironment("Development")){//ThiswillpushtelemetrydatathroughApplicationInsightspipelinefaster,allowingyoutoviewresultsimmediately.builder.AddApplicationInsightsSettings(developerMode:true);}builder.AddEnvironmentVariables();Configuration=builder.Build();}publicIConfigurationRootConfiguration{get;}//Thismethodgetscalledbytheruntime.UsethismethodtoaddservicestothecontainerpublicvoidConfigureServices(IServiceCollectionservices){//Addframeworkservices.services.AddApplicationInsightsTelemetry(Configuration);services.AddMvc();}//Thismethodgetscalledbytheruntime.UsethismethodtoconfiguretheHTTPrequestpipelinepublicvoidConfigure(IApplicationBuilderapp,IHostingEnvironmentenv,ILoggerFactoryloggerFactory){loggerFactory.AddConsole(Configuration.GetSection("Logging"));loggerFactory.AddDebug();app.UseApplicationInsightsRequestTelemetry();app.UseApplicationInsightsExceptionTelemetry();app.UseMvc();}}我知道可以通过 DI 的方式将 Configuration 注入到 Controller,Service,Repository 等地方,但在真实项目中,会有很多类是在这三块之外的。
请问我如何在这三大块之外实现 Configuration 的注入呢?换句话说:可以在任意类中实现 Configuration 的注入... 😭
在 .NET Core 中你可以将 IConfiguration 作为参数直接注入到 Class 的构造函数中,这本身就是可以的,如下代码所示:
publicclassMyClass{privateIConfigurationconfiguration;publicMyClass(IConfigurationconfiguration){ConnectionString=newconfiguration.GetValue<string>("ConnectionString");}}接下来要做的就是 new MyClass(),很显然这样做是不行的,因为你的构造函数还需要一个 IConfiguration 类型的参数,所以你需要将 new MyClass() 塞入到 Asp.NET Core 的 DI 链中。
思路也很简单。
在 MyClass 的调用方处通过 DI 生成实例,这里以 Controller 处为例,如下代码所示:
publicclassMyController:ControllerBase{privateMyClass_myClass;publicMyController(MyClassmyClass){_myClass=myClass;}}这样是不是就完美的实现了在 MyClass 中使用 Configuration 了?
还有一种更简单粗暴的做法,无需注入, 只需定义一个静态的类,在 Startup 中将 IConfiguration 赋值给该静态类保存即可,参考代码如下:
publicstaticclassMyAppData{publicstaticIConfigurationConfiguration;}publicStartup(IConfigurationconfiguration){Configuration=configuration;MyAppData.Configuration=configuration;}然后就可以在项目的各处访问 MyAppData.Configuration 啦。
在 Asp.Net 时代,读取配置文件真的是一点都不需要操心,一个 ConfigurationManager 走天下😄😄😄,比如下面的代码:
privatestaticstringAppKey=ConfigurationManager.AppSettings["AppKey"];反倒在 Asp.Net Core 中却有点懵逼了,就像题主说的,我想在任意类中都可以读取 Configuration 😂😂😂,问题的差异来自于 Asp.Net Core 使用了 DI先行 的打法,哈哈,忘了过去吧,从 ♥ 开始 ...
以上就是如何在 ASP.NET Core 的任意类中注入Configuration 的详细内容,更多关于ASP.NET Core 注入Configuration 的资料请关注其它相关文章!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了ASP.NET缓存处理类。分享给大家供大家参考。具体如下:ASP.NET缓存处理类。用法:Justcopythiscodeintoanewclas
ASP.NET中前台javascript与后台代码调用1如何在JavaScript访问C#函数?2.如何在JavaScript访问C#变量?3.如何在C#中访问
ASP.NET回车提交事件其实说到底并不是ASP.NET的编程问题,却是关于htmlform中的submit按钮就是如何规划的具体讨论。也可归于ASP.NET编
在你将现有的用户登录(SignIn)站点从ASP.NET迁移至ASP.NETCore时,你将面临这样一个问题——如何让ASP.NET与ASP.NETCore用户
本文实例讲述了PHP模拟asp.net的StringBuilder类实现方法。分享给大家供大家参考。具体如下:在asp.net开发开发环境中,有一个String