appsettings 文件属性是否会覆盖 app.config 中的内容?

发布于 2024-12-29 03:10:02 字数 523 浏览 0 评论 0 原文

app.config 中的 appsettings 标记有一个文件属性:

<appSettings file="other.config">
..
..
</appSettings>

这是如何工作的?它会将 appSettings (原始)中的内容与 other.config 文件合并吗?或者它会覆盖它吗?如果 other.config 文件不存在,会崩溃吗?

我自己尝试了一下,如果原始版本中没有密钥,它似乎不会从 other.config 中读取它?

other.config 文件应该只有 xml 节点,还是应该全部位于 appsettings 元素内?

<appSettings>
  <userId>123</userId>
</appSettings>

或者

<userId>123</userId>

The appsettings tag in the app.config has a file attribute:

<appSettings file="other.config">
..
..
</appSettings>

How does this work? Will it merge what is in the appSettings (original) with the other.config file? Or will it overwrite it? What if the other.config file doesn't exist, should it crash?

I'm trying it myself and if a key isn't in the original, it doesn't seem to read it from the other.config?

Should the other.config file have just xml nodes, or should it all be inside a appsettings element?

<appSettings>
  <userId>123</userId>
</appSettings>

or

<userId>123</userId>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

北笙凉宸 2025-01-05 03:10:02
  • 如果该文件不存在,它不会崩溃,只会被忽略。
  • 外部配置必须包含 节点,因此您的第一个示例是正确的。
  • 外部文件中的值将优先,如果不存在任何值,则使用 app.config 值。

这能掩盖一切吗?

  • If the file doesn't exist it will not crash, it will just be ignored.
  • The external config has to contain the <appSettings> node so your first example is correct.
  • The value in the external file will take priority, if no value is present then the app.config value is used.

Does that cover off everything?

梦途 2025-01-05 03:10:02

关于该主题的最佳答案之一在这里: ASP.NET web.xml config:configSource 与文件属性 - 归功于 @Massimiliano Peluso

file 属性

configSource 属性

file 属性指定一个包含自定义设置的外部文件,就像您在 web.config 文件的 appSettings 条目中所做的那样。
同时,configSource 属性中指定的外部文件包含您为其声明 configSource 的部分的设置。例如,如果您使用页面部分的 configSource 属性,则外部文件将包含页面部分的设置。

在指定的外部配置中声明的自定义设置
file 属性将与 appSettings 中的设置合并
web.config 文件中的部分。与此同时,configSource
不支持合并,这意味着您必须移动整个
将部分设置写入外部文件。

http://www.codeproject.com /Messages/1463547/重新区分-configSource-and-file-attrib.aspx

One of the best answers on the subject is here: ASP.NET web.config: configSource vs. file attributes - Credit to @Massimiliano Peluso

file attribute

configSource attribute

The file attribute specifies an external file containing custom settings like you do in the appSettings entry of the web.config file.
Meanwhile, the external file specified in the configSource attribute contains the settings for the section which you declare the configSource for. For example, if you use the configSource attribute of the pages section, then the external file will contain the settings for the pages section.

The custom settings declared in the external config specifified in the
file attribute will be merged with the settings in the appSettings
section in the web.config file. In the meanwhile, the configSource
does not support merging, it means that you'll have to move the entire
section settings into the external file.

http://www.codeproject.com/Messages/1463547/Re-difference-between-configSource-and-file-attrib.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文