【web.config和app.config混淆】幽映每白日,清辉照衣裳。这篇文章主要讲述web.config和app.config混淆相关的知识,希望能为你提供帮助。
我有一个引用Web服务的DLL。
它放入app.config的块是(我已经更改了名称,但你会得到这个想法):
<
applicationSettings>
<
DLLName.My.MySettings>
<
setting name="DLLName_WebReferenceName_ASMXName"
serializeAs="String">
<
value>
http://URL/Filename.asmx<
/value>
<
/setting>
<
/DLLName.My.MySettings>
<
/applicationSettings>
我的网站引用了这个DLL。
问题是,我将如何添加到web.config以覆盖上述设置(另外,我只是将app.config放在BIN目录中)?
我需要能够覆盖生产服务器上的Web服务的URL,因为它无法访问app.config中指定的URL(这是我们不会涉及的另一个问题)。
答案在configSections中创建一个名为applicationSettings的新sectionGroup,并将app.config配置粘贴到web.config中,如下所示,然后您可以覆盖app.config设置。
<
?xml version="1.0" encoding="utf-8" ?>
<
configuration>
<
configSections>
<
sectionGroup name="applicationSettings"
type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<
section name="Playground.ConfigurationOverride.DataAccess.Properties.Settings"
type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
requirePermission="false" />
<
/sectionGroup>
<
/configSections>
<
applicationSettings>
<
Playground.ConfigurationOverride.DataAccess.Properties.Settings>
<
setting name="MySetting" serializeAs="String">
<
value>
Setting in DataAccess<
/value>
<
/setting>
<
/Playground.ConfigurationOverride.DataAccess.Properties.Settings>
<
/applicationSettings>
<
/configuration>
另一答案 Asp.Net配置文件之间的差异:Web.config:
如果要在IIS上托管应用程序,则需要Web.config。 Web.config是IIS的强制配置文件,用于配置它在Kestrel前面作为反向代理的行为方式。如果要在IIS上托管它,则必须维护web.config。
AppSetting.json:
对于与IIS无关的所有其他内容,您使用AppSetting.json。 AppSetting.json用于Asp.Net Core托管。 ASP.NET Core使用“ASPNETCORE_ENVIRONMENT”环境变量来确定当前环境。默认情况下,如果在未设置此值的情况下运行应用程序,它将自动默认为生产环境并使用“AppSetting.production.json”文件。当您通过Visual Studio进行调试时,它将环境设置为Development,因此它使用“AppSetting.json”。请参阅此网站以了解如何在Windows上设置托管环境变量。
App.config:
App.config是.NET使用的另一个配置文件,主要用于Windows窗体,Windows服务,控制台应用程序和WPF应用程序。当您通过控制台应用程序启动Asp.Net Core托管时,也会使用app.config。
Too Long; Didn't Read
配置文件的选择取决于您为服务选择的托管环境。如果您使用IIS来托管服务,请使用Web.config文件。如果您使用的是任何其他托管环境,请使用App.config文件。查看Configuring Services Using Configuration Files documentation并查看Configuration in ASP.NET Core.
推荐阅读
- 在Azure App Service上启用gzip压缩
- web.config与.dll中的app.config
- appsettings文件属性是否覆盖了app.config中的内容()
- C#/ ASP.Net(app.settings而不是web.config)
- 使用Azure Web App上的web.config将子域重写到目录
- 如何使用devexpress加速treeview appendnode
- Android Treeview
- 前100万个网站的安全性,性能和WordPress分析
- 初学者网络安全基础知识简介