appsettings 文件属性是否会覆盖 app.config 中的内容?
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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
节点,因此您的第一个示例是正确的。这能掩盖一切吗?
<appSettings>
node so your first example is correct.Does that cover off everything?
关于该主题的最佳答案之一在这里: ASP.NET web.xml config:configSource 与文件属性 - 归功于 @Massimiliano Peluso
file
属性appSettings
部分中。 配置上的 config
。保存 调用。configSource
属性appSettings
configSource
上指定的文件中配置。保存 调用。file
属性指定一个包含自定义设置的外部文件,就像您在 web.config 文件的 appSettings 条目中所做的那样。同时,
configSource
属性中指定的外部文件包含您为其声明 configSource 的部分的设置。例如,如果您使用页面部分的 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
attributeappSettings
section.config
on a Configuration.Save call.configSource
attributeappSettings
configSource
on a Configuration.Save call.System.Configuration.ConfigurationErrorsException
is thrown if config source file does not exist.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.http://www.codeproject.com/Messages/1463547/Re-difference-between-configSource-and-file-attrib.aspx