gpt4 book ai didi

c# - 将日志记录配置从 appsettings 绑定(bind)到 POCO Asp.Net Core 2

转载 作者:太空宇宙 更新时间:2023-11-03 12:20:39 25 4
gpt4 key购买 nike

我有一个 ApplicationConfigurationSettings 类,我将 appsettings.json 文件中的值绑定(bind)到该类。我可以绑定(bind)除记录器 LogLevel 值以外的所有内容,这很可能是由于日志记录条目的 json 格式中存在子级别。

我绑定(bind)类如下

 services.Configure<ApplicationConfigurationSettings>(Configuration.GetSection("ApplicationConfiguration"));

appsettings.json(为简洁起见删除了部分)

{
"ApplicationConfiguration": {
"ConnectionStrings": {
"DevelopmentConnection": "Server=(localdb)\\mssqllocaldb;Database=TestingConfigurationNetCoreTwo_Development;Trusted_Connection=True;MultipleActiveResultSets=true"
},
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Warning"
}
},
"ApplicationIconUrls": {
"MaleUserIcon": "https://machineryrestorations.blob.core.windows.net/publicfiles/images/BestMaleUser_32x32.png",
"FemaleUserIcon": "https://machineryrestorations.blob.core.windows.net/publicfiles/images/BestFemaleUser_32x32"
},
"ApplicationInfo": {
"VersionNumber": "1.0.0",
"Author": "Jimbo",
"ApplicationName": "CustomTemplate",
"CreatedOn": "November 20, 2017"

}
}
}

我的记录器 POCO

public class LoggerSettings
{
public bool IncludeScopes { get; set; }
public KeyValuePair<string,string> LogLevel { get; set; }
}

我确定这是因为 Binder 无法将我的 LogLevel 属性与 json 文件中的内容相协调。由于我无法更改 json 文件中的日志记录格式,我该如何更改我的记录器 POCO 才能使其正常工作?

这是 json 提供程序在检查来自

的配置时解析它的方式
services.AddSingleton(Configuration);

{[ApplicationConfiguration:Logging:IncludeScopes, False]} {[ApplicationConfiguration:Logging:LogLevel:Default, Warning]}

我似乎无法在类中正确设置该属性以使其正确绑定(bind)。

最佳答案

Json 对象

"LogLevel": {
"Default": "Warning"
}

无法映射到 public KeyValuePair<string,string> LogLevel { get; set; }属性(property)的原因很简单。如果一段时间后,该部分将扩展为其他字段怎么办:

"LogLevel": {
"Default": "Warning",
"SomeOtherField": "SomeValue"
}

应该如何映射到单个KeyValuePair<string,string> ?当然,在您的简单情况下,可能会映射这样的单个键值对象,但配置绑定(bind)器在其假设中并没有走得太远,它只是无法以这种方式工作。

而且我认为这是一件好事,因为您正试图从强类型 POCO 转移到一些键值包,它在某种程度上贬低了 .net 核心中采用的强类型配置的整个方法。

解决您的问题非常简单。只需声明 LoggingLevel具有单个(此时)属性的类 Defaultstring输入:

public class LoggingLevel
{
public string Default { get; set; }
}

public class LoggerSettings
{
public bool IncludeScopes { get; set; }

public LoggingLevel LogLevel { get; set; }
}

您可以更进一步,为 Default 设置类型属性为 Microsoft.Extensions.Logging.LogLevel .配置 Binder 将正确映射字符串值,如 "Warning"枚举值 LogLevel.Warning :

public class LoggingLevel
{
public LogLevel Default { get; set; }
}

拥有如此简单的 POCO 似乎有点矫枉过正,而且您将拥有相当多的用于高级配置的 POCO。但这实际上是要走的路,强类型、显式和可扩展。

关于c# - 将日志记录配置从 appsettings 绑定(bind)到 POCO Asp.Net Core 2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47501194/

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