在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
只需要把Startup.cs中的Configure方法改一下就好了。 改成 之前的代码会判断在开发环境中才加载,移出去之后就都可以加载Swagger了。 作者:尼尔丶 链接:https://www.jianshu.com/p/cf22dffacec4 来源:简书 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 .NetCore swagger发布到iis时访问api出现404的解决方案介绍 解决方法 1 <environmentVariables> 2 <environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Development" /> 3 </environmentVariables> 修改后的web.config结构大致如下: 1 <?xml version="1.0" encoding="utf-8"?> 2 <configuration> 3 <location path="." inheritInChildApplications="false"> 4 <system.webServer> 5 <handlers> 6 <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" /> 7 </handlers> 8 <aspNetCore processPath="dotnet" arguments="*.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="InProcess"> 9 <environmentVariables> 10 <environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Development" /> 11 </environmentVariables> 12 </aspNetCore> 13 </system.webServer> 14 </location> 15 </configuration> 16 <!--ProjectGuid: 15af0485-b65a-422a-bf12-5877b85abb6c--> 介绍 解决方法 1 <environmentVariables> 2 <environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Development" /> 3 </environmentVariables> 修改后的web.config结构大致如下: 1 <?xml version="1.0" encoding="utf-8"?> 2 <configuration> 3 <location path="." inheritInChildApplications="false"> 4 <system.webServer> 5 <handlers> 6 <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" /> 7 </handlers> 8 <aspNetCore processPath="dotnet" arguments="*.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="InProcess"> 9 <environmentVariables> 10 <environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Development" /> 11 </environmentVariables> 12 </aspNetCore> 13 </system.webServer> 14 </location> 15 </configuration> 16 <!--ProjectGuid: 15af0485-b65a-422a-bf12-5877b85abb6c--> |
请发表评论