使用AspNetCore为IIS托管的Web应用程序设置设置。 .json页面已加载,似乎可以正常使用所有API,但是导航到{localhost} / swagger以查看UI页面时,我收到404错误。我在Startup.cs中有以下代码:
//Configure Services
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
services.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new Info { Title = "API ", Version = "v1" });
c.ResolveConflictingActions(apiDescriptions => apiDescriptions.First());
});
}
//Configure
app.UseSwagger();
app.UseStaticFiles();
app.UseDeveloperExceptionPage();
// Enable middleware to serve generated Swagger as a JSON endpoint.
// Enable middleware to serve swagger-ui (HTML, JS, CSS, etc.),
// specifying the Swagger JSON endpoint.
app.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("./swagger/v1/swagger.json", "My API V1");
//c.RoutePrefix = string.Empty;
});
app.UseMvc();
}
有人看到与此相关的任何潜在问题吗?或在故障排除方面有什么建议?已经研究了一段时间,希望有新的眼睛可以看到我不是的东西。
答案 0 :(得分:0)
如果您希望在Web应用程序的根目录中提供灵活的UI,请在MS Docs中将routePrefix设置为空字符串。
要在应用程序的根目录(http://localhost:/)中提供Swagger UI,请将RoutePrefix属性设置为空字符串
默认为“ / swagger”;看来您要覆盖此内容,这就是UI不在“ / swagger”显示的原因。只需点击“ localhost:”,用户界面就会出现。
删除routePrefix的分配,它应该如您所愿地显示在“ / swagger”处。
答案 1 :(得分:0)
尝试使用到SwaggerEndpoint的相对路径:
app.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("../swagger/v1/swagger.json", "My API V1");
});
然后导航至{App Url} / swagger。
请参阅https://github.com/domaindrivendev/Swashbuckle/issues/971