第一步 :新建ASP.NET Core webapi项目
第二步:安装Microsoft.Extensions.Options和Microsoft.Extensions.Configuration.Binder
第三步:修改appsettings.json,内容如下:
- {
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
- },
- "DB": {
- "DbType": "SQLServer",
- "Connection": "Data Source = .Catalog=DemoDB; Integrated Security = true"
- },
- "Smtp": {
- "Server": "smtp.youzack.com",
- "UserName": "zack",
- "Password": "hello888",
- },
- "AllowedHosts": "*"
- }
复制代码 第四步:由于我们只读取配置系统中“DB”和“Smtp”这两部分,建立对应的模型类,代码如下:
- public class DbSettings
- {
- public string? DbType { get; set; }
- public string? ConnectionString { get; set; }
- }
复制代码- public class SmtpSettings
- {
- public string? Server { get; set; }
- public string? UserName { get; set; }
- public string? Password { get; set; }
- }
复制代码由于利用选项方式读取配置的时间,需要和依赖注入一起利用,因此我们需要创建一个类用于获取注入的选项值。声明接收选项注入的对象的范例不能直接利用DbSettings、SmtpSettings,而要利用IOptions、IOptionsMonitor、IOptionsSnapshot等泛型接口范例,由于它们可以帮我们处理容器生命周期、配置刷新等。它们的区别在于,IOptions在配置改变后,我们不能读到新的值,必须重启程序才可以读到新的值;IOptionsMonitor在配置改变后,我们能读到新的值;IOptionsSnapshot也是在配置改变后,我们能读到新的值,和IOptionsMonitor不同的是,在同一个范围内IOptionsMonitor会保持划一性。
编写读取配置的Demo代码 如下:
- public class Demo
- {
- private readonly IOptionsSnapshot<DbSettings> optDbsettings;
- private readonly IOptionsSnapshot<SmtpSettings> optSmtpSettings;
- public Demo(IOptionsSnapshot<DbSettings> optDbsettings, IOptionsSnapshot<SmtpSettings> optSmtpSettings)
- {
- this.optDbsettings = optDbsettings;
- this.optSmtpSettings = optSmtpSettings;
- }
- public void Test()
- {
- var db = optDbsettings.Value;
- Console.WriteLine($"数据库:{db.DbType},{db.ConnectionString}");
- var smtp = optSmtpSettings.Value;
- Console.WriteLine($"smtp:{smtp.Server},{smtp.UserName},{smtp.Password}");
- }
- }
复制代码 注册服务到容器
- var configurationBuilder = new ConfigurationBuilder();
- configurationBuilder.AddJsonFile("appsettings.json", optional: false, reloadOnChange: true);
- IConfigurationRoot config = configurationBuilder.Build();
- ServiceCollection services = new ServiceCollection();
- services.AddOptions().Configure<DbSettings>(e => config.GetSection("DB").Bind(e))
- .Configure<SmtpSettings>(e => config.GetSection("Smtp").Bind(e));
- services.AddTransient<Demo>();
- using (var sp = services.BuildServiceProvider())
- {
- while (true)
- {
- using (var scope = sp.CreateScope())
- {
- var spScope = scope.ServiceProvider;
- var demo = spScope.GetRequiredService<Demo>();
- demo.Test();
- }
- Console.WriteLine("可以修改配置了");
- Console.ReadKey();
- }
- }
复制代码 运行exe
![[assets/ASP.NET Core利用选项方式读取配置/file-20250308123308971.png]]
修改配置文件保存
![[assets/ASP.NET Core利用选项方式读取配置/file-20250308123433037.png]]
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |