gpt4 book ai didi

c# - 如何在 appsettings.json 中加载多态对象

转载 作者:行者123 更新时间:2023-12-04 11:29:07 24 4
gpt4 key购买 nike

有什么方法可以从 appsettings.json 读取多态对象吗?以强类型的方式?下面是我需要的一个非常简化的例子。
我有多个应用组件,名为 Features这里。这些组件由工厂在运行时创建。我的设计意图是每个组件都由其单独的强类型选项配置。在这个例子中 FileSizeCheckerOptionsPersonCheckerOption是这些的实例。每个功能都可以使用不同的选项多次包含。
但是使用现有的 ASP.NET Core 配置系统,我无法阅读 多晶强类型选项。如果设置是由 JSON 解串器读取的,我可以使用 something like this .但这不是appsettings.json的情况,其中选项只是键值对。
appsettings.json

{
"DynamicConfig":
{
"Features": [
{
"Type": "FileSizeChecker",
"Options": { "MaxFileSize": 1000 }
},
{
"Type": "PersonChecker",
"Options": {
"MinAge": 10,
"MaxAge": 99
}
},
{
"Type": "PersonChecker",
"Options": {
"MinAge": 15,
"MaxAge": 20
}
}
]
}
}
Startup.cs
    public void ConfigureServices(IServiceCollection services)
{
services.Configure<FeaturesOptions>(Configuration.GetSection("DynamicConfig"));
ServiceProvider serviceProvider = services.BuildServiceProvider();
// try to load settings in strongly typed way
var options = serviceProvider.GetRequiredService<IOptions<FeaturesOptions>>().Value;
}
其他定义
public enum FeatureType
{
FileSizeChecker,
PersonChecker
}

public class FeaturesOptions
{
public FeatureConfig[] Features { get; set; }
}

public class FeatureConfig
{
public FeatureType Type { get; set; }
// cannot read polymorphic object
// public object Options { get; set; }
}

public class FileSizeCheckerOptions
{
public int MaxFileSize { get; set; }
}

public class PersonCheckerOption
{
public int MinAge { get; set; }
public int MaxAge { get; set; }

}

最佳答案

回答这个问题的关键是要知道 key 是如何生成的。在您的情况下,键/值对将是:

DynamicConfig:Features:0:Type
DynamicConfig:Features:0:Options:MaxFileSize
DynamicConfig:Features:1:Type
DynamicConfig:Features:1:Options:MinAge
DynamicConfig:Features:1:Options:MaxAge
DynamicConfig:Features:2:Type
DynamicConfig:Features:2:Options:MinAge
DynamicConfig:Features:2:Options:MaxAge
注意数组的每个元素是如何用 DynamicConfig:Features:{i} 表示的.
要知道的第二件事是,您可以使用 ConfigurationBinder.Bind 将配置的任何部分映射到对象实例。方法:
var conf = new PersonCheckerOption();
Configuration.GetSection($"DynamicConfig:Features:1:Options").Bind(conf);
当我们将所有这些放在一起时,我们可以将您的配置映射到您的数据结构:
services.Configure<FeaturesOptions>(opts =>
{
var features = new List<FeatureConfig>();

for (var i = 0; ; i++)
{
// read the section of the nth item of the array
var root = $"DynamicConfig:Features:{i}";

// null value = the item doesn't exist in the array => exit loop
var typeName = Configuration.GetValue<string>($"{root}:Type");
if (typeName == null)
break;

// instantiate the appropriate FeatureConfig
FeatureConfig conf = typeName switch
{
"FileSizeChecker" => new FileSizeCheckerOptions(),
"PersonChecker" => new PersonCheckerOption(),
_ => throw new InvalidOperationException($"Unknown feature type {typeName}"),
};

// bind the config to the instance
Configuration.GetSection($"{root}:Options").Bind(conf);
features.Add(conf);
}

opts.Features = features.ToArray();
});
注意:所有选项必须源自 FeatureConfig为此工作(例如 public class FileSizeCheckerOptions : FeatureConfig )。您甚至可以使用反射来自动检测从 FeatureConfig 继承的所有选项。 , 以避免切换类型名称。
注意 2:您也可以将您的配置映射到 Dictionary ,或 dynamic如果您愿意,可以反对;查看我对 Bind netcore IConfigurationSection to a dynamic object 的回答.

关于c# - 如何在 appsettings.json 中加载多态对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55954858/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com