正在使用AspNetCore为IIS托管的Web应用程序设置swagger。.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();
}
有人看到任何潜在的问题吗?或有任何建议,在故障排除方面?我一直在这个工作了一段时间了,希望一个新的眼睛可以看到一些我没有。
3条答案
按热度按时间lkaoscv71#
在MS Docs中,如果希望swagger UI在Web应用的根目录下提供,则将routePrefix设置为空字符串。
要在应用程序的根(http://localhost:/)处提供Swagger UI,请将RoutePrefix属性设置为空字符串
默认为“/swagger”;这就是UI没有显示在“/swagger”处的原因。只需单击“localhost:,"UI就会显示出来。
删除routePrefix的分配,它应该如您所期望的那样显示在“/swagger”处。
sqserrrh2#
尝试使用SwaggerEndpoint的相对路径:
然后导航到{应用程序URL}/swagger。
请参阅https://github.com/domaindrivendev/Swashbuckle/issues/971
nvbavucw3#
尝试使用SwaggerEndpoint的相对路径: