Asp.net core WebApi 使用Swagger生成帮助页实例
最近我们团队一直进行.net core的转型,web开发向着前后端分离的技术架构演进,我们后台主要是采用了asp.net core webapi来进行开发,开始每次调试以及与前端人员的沟通上都存在这效率低下的问题,一次在看微软asp.net core官方文档的时候,发现了swagger这个好东西。然后在实际的项目中引入了该技术。我们开发人员测试自己写的api的过程大大得到了简化,前端人员也可以根据我们提供的swagger help pages 自己进行一些前端代码的测试,大大提高了前后端的开发效率。下面我就拿我自己的真实上线项目来一步一步的讲解如何在asp.net core webapi中引入swagger。(也可以参照微软官方文档:)
一、引入swagger nuget包
右键点击wepapi项目的依赖项,点击管理nuget程序包,如下图:
在打开的nuget包程序管理界面,输入:swashbuckle.aspnetcore 目前该程序包的版本为1.0.0,点击安装。
安装完后,需要在项目中的startup.cs文件中进行配置。
二、配置swagger
打开startup.cs 文件,在configureservices 方法中,添加如下代码:
services.addswaggergen(c => { c.swaggerdoc("v1", new info { version = "v1", title = "twbusmanagement接口文档", description = "restful api for twbusmanagement", termsofservice = "none", contact = new contact { name = "alvin_su", email = "asdasdasd@outlook.com", url = "" } }); //set the comments path for the swagger json and ui. var basepath = platformservices.default.application.applicationbasepath; var xmlpath = path.combine(basepath, "twbusapi.xml"); c.includexmlcomments(xmlpath); // c.operationfilter<httpheaderoperation>(); // 添加httpheader参数 });
注意上段代码的最后三行,是我们api描述文档xml的生成地址和文件名,需要在项目的属性中进行配置。如下图:
另外上图中,禁止显示警告中,添加1591 代码,可以过滤掉一些类名没有写注释的报警信息。
最后需要在configure方法中,添加如下代码,注意下面的代码必须添加在 app.usemvc() 前面:
// enable middleware to serve generated swagger as a json endpoint. app.useswagger(); // enable middleware to serve swagger-ui (html, js, css etc.), specifying the swagger json endpoint. app.useswaggerui(c => { c.swaggerendpoint("/swagger/v1/swagger.json", "twbusmanagement api v1"); c.showrequestheaders(); });
以上配置完后,就可以使用swagger生成的帮助页面了,运行项目后,在浏览器地址 加上后缀 /swagger就可以跳转到帮助页面:
当然我们开发人员在开发项目的过程中并不想每次都要手动输入地址才能跳转到帮助页面,这样太麻烦。我们可借助visual studio 进行跳转,如下图:
打开 launchsettings.json 文件,把webapi项目的启动路径设置成 swagger。这样每次调试运行项目都会自动跳转到swagger帮助页面
三、swagger的一些高级用法
swagger非常强大,不仅仅是一些帮助页面信息,还可以进行api的调试。这样就可以不用借助第三方工具 如:postman,进行webapi的调试。swagger经过配置,还可以输入一些http头部信息,如权限认证信息等。下面就来讲解以下具体的配置。
首先我们需要新建一个类 httpheaderoperation,让该类继承ioperationfilter 接口,该接口需引入命名空间:swashbuckle.aspnetcore.swaggergen,实现接口方法apply 代码如下:
public class httpheaderoperation : ioperationfilter { public void apply(operation operation, operationfiltercontext context) { if (operation.parameters == null) { operation.parameters = new list<iparameter>(); } var actionattrs = context.apidescription.actionattributes(); var isauthorized= actionattrs.any(a => a.gettype() == typeof(authorizeattribute)); if (isauthorized == false) //提供action都没有权限特性标记,检查控制器有没有 { var controllerattrs= context.apidescription.controllerattributes(); isauthorized= controllerattrs.any(a => a.gettype() == typeof(authorizeattribute)); } var isallowanonymous = actionattrs.any(a => a.gettype() == typeof(allowanonymousattribute)); if (isauthorized && isallowanonymous == false) { operation.parameters.add(new nonbodyparameter() { name = "authorization", //添加authorization头部参数 in = "header", type = "string", required = false }); } } }
然后在 startup.cs 中的 configureservices 方法,找到之前的addswaggergen 代码段,在最后添加如下代码:
c.operationfilter<httpheaderoperation>() services.addswaggergen(c => { c.swaggerdoc("v1", new info { version = "v1", title = "twbusmanagement接口文档", description = "restful api for twbusmanagement", termsofservice = "none", contact = new contact { name = "alvin_su", email = "alvin_su@outlook.com", url = "" } }); //set the comments path for the swagger json and ui. var basepath = platformservices.default.application.applicationbasepath; var xmlpath = path.combine(basepath, "twbusapi.xml"); c.includexmlcomments(xmlpath); c.operationfilter<httpheaderoperation>(); // 添加httpheader参数 });
这样,我们允许webapi项目后,就可以输入 authorization 头部参数了。如下图:
更多关于swagger的用法可以参考https://github.com/domaindrivendev/swashbuckle.aspnetcore 以及微软文档:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 青海十大特色美食,狗浇尿油饼让你欲罢不能,你吃过吗
下一篇: c# 调用.bat文件的实现代码
推荐阅读
-
Asp.net core WebApi 使用Swagger生成帮助页实例
-
Asp.Net Core WebAPI使用Swagger时API隐藏和分组详解
-
ASP.NET Core 3.0 WebApi中使用Swagger生成API文档简介
-
Asp.net core WebApi 使用Swagger生成帮助页实例
-
ASP.NET Core WebApi使用Swagger生成api说明文档看这篇就够了
-
asp.net core webapi 使用ef 对mysql进行增删改查,并生成Docker镜像构建容器运行
-
asp.net core系列 37 WebAPI 使用OpenAPI (swagger)中间件
-
Asp.Net Core2.0 WebAPI 使用Swagger生成漂亮的接口文档
-
Swagger的 ASP.NET Core Web API 帮助页
-
ASP.NET Core 3.0 WebApi中使用Swagger生成API文档简介