gpt4 book ai didi

app-config - 自定义配置属性 - 条目已添加

转载 作者:行者123 更新时间:2023-12-01 12:36:35 25 4
gpt4 key购买 nike

我正在开发一个 Windows 服务,它在启动时从 app.config 中读取信息,这应该允许我们在不重新部署服务的情况下更改内部线程配置。

我创建了一些自定义配置部分和元素如下(省略实现):

public class MyConfigurationSection
{
[ConfigurationProperty("threads")]
[ConfigurationCollection(typeof(MyThreadCollection), AddItemName="addThread")>
public MyThreadCollection threads { get; }
}

public class MyThreadCollection
{
protected override void CreateNewElement();
protected override object GetElementKey(ConfigurationElement element);
}

public class MyThreadElement
{
[ConfigurationProperty("active", DefaultValue=true, IsRequired=false)>
public bool active { get; set; }

[ConfigurationProperty("batchSize", DefaultValue=10, IsRequired=false)>
public int batchSize { get; set; }

[ConfigurationProperty("system", IsRequired=true)>
public string system { get; set; }

[ConfigurationProperty("department", IsRequired=true)>
public string department { get; set; }

[ConfigurationProperty("connection", IsRequired=true)>
public MyThreadConnectionElement connection { get; set; }
}

public class MyThreadConnectionElement
{
[ConfigurationProperty("server", IsRequired=true)>
public string server { get; set; }

[ConfigurationProperty("database", IsRequired=true)>
public string database { get; set; }

[ConfigurationProperty("timeout", DefaultValue=15, IsRequired=false)>
public int timeout { get; set; }
}

然后我将一些元素添加到 app.config 中,如下所示:

<configurationSection>
<threads>
<addThread
active="True"
batchSize="50"
system="MySystem1"
department="Department1">
<connectionString
server="MyServer"
database="Database1" />
</addThread>
<addThread
active="True"
batchSize="30"
system="MySystem2"
department="Department2">
<connectionString
server="MyServer"
database="Database2" />
</addThread>
</threads>
</configurationSection>

一切正常 - 读取配置,创建线程,进程运行。

问题是,我希望这两个线程具有相同的 system名称/值——两者都应该是 MySystem -- 但是当我这样做并运行程序时,我得到一个 The entry 'MySystem' has already been added.异常。

我想这可能是因为必须显式配置属性以允许重复,但我不知道如何配置,也找不到 ConfigurationProperty 的属性。除了 IsKey 之外的可能允许的类,但从它的描述来看,它似乎不是答案,并且尝试它并没有解决问题。我走在正确的轨道上吗?

最初是 system属性被命名为name我虽然可能只是任何名为 name 的属性被视为唯一标识符,所以我将其更改为 system但它没有改变任何东西。

我尝试了 <clear />标记为其他一些建议的类似帖子,但没有成功。

我是否需要向配置部分添加另一个层次结构 -- Config -> Department -> Thread 而不是 Config -> Thread?我宁愿不采用这种方法。

感谢所有的输入。

最佳答案

我其实很久以前就找到了问题和解决方案,但是忘记发布答案了;感谢@tote 提醒我。

在实现 ConfigurationElementCollection 类时,可以覆盖 GetElementKey(ConfigurationElement) 方法。在没有立即意识到该方法的用途的情况下,我覆盖了它并简单地返回了 system 属性值,并且由于不止一个配置元素具有相同的系统名称,从技术上讲它们具有相同的键,这就是为什么发生错误。

我的解决方案是将 systemdepartment 值返回为 system.department,这会产生唯一键。

关于app-config - 自定义配置属性 - 条目已添加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29097662/

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