微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

asp.net-core – 虚拟目录中的IIS站点Swagger UI端点

Swagger UI端点与登台时的dev不同(不包括域名)

IIS配置

public void Configure(IApplicationBuilder app,IHostingEnvironment env,ILoggerFactory loggerFactory)

 app.UseSwagger(c=>
        {
            //Change the path of the end point,should also update UI middle ware for this change                
            c.RouteTemplate = "api-docs/{documentName}/swagger.json";                 
        });          

        app.UseSwaggerUI(c =>
        {  
            //Include virtual directory if site is configured so
            c.SwaggerEndpoint(Configuration["Appsettings:VirtualDirectory"]+"api-docs/v1/swagger.json","Api v1");                
        });

 services.AddSwaggerGen(c =>
        {
 var xmlDocPath = Path.Combine(PlatformServices.Default.Application.ApplicationBasePath,"Api.xml");
            c.IncludeXmlComments(xmlDocPath);
            c.DescribeAllEnumsAsstrings();

具有上述配置

发展

"AppSettings": {
"VirtualDirectory": "/"

}

分期

"AppSettings": {
"VirtualDirectory": "/Api/"

}

启动计算机上UI的终点,暂存时间为ON

http://localhost:5001/api-docs/v1/swagger.json

但是在登台服务器上也是一样的

http://xxxx:5002/swagger/Api/api-docs/v1/swagger.json

而不是(应该是什么)

http://xxxx:5002/Api/api-docs/v1/swagger.json

解决方法

这个问题与环境变量更相关. Swagger支持虚拟目录,然后配置应如下所示.请注意,虚拟目录不会影响UI端点.
app.UseSwagger(c =>
            {
                //Change the path of the end point,should also update UI middle ware for this change                
                c.RouteTemplate = "api-docs/{documentName}/swagger.json";
            });
 app.UseSwaggerUI(c =>
            {
                //Include virtual directory if site is configured so
                c.RoutePrefix = "api-docs";
                c.SwaggerEndpoint("v1/swagger.json","Api v1");
            });

原文地址:https://www.jb51.cc/aspnet/251082.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐