Swagger
程序员文章站
2022-07-02 21:06:49
...
Swagger使用介绍
文章目录
介绍
介绍参考
无需编写word or excel 等文件的接口文档,并解决版本迭代引起的接口变更不一致
自动根据配置生成代码对应的接口文档
WebApi配置
注:c# 目前只有WebApi和Core 才兼容
1、WebApi项目中引入
2、添加实现了ISwaggerProvider接口的类
在WebApi --> App_Start文件夹中添加SwaggerControllerDescProvider.cs,相关代码如下:
using Swashbuckle.Swagger;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Xml;
namespace SeaSky.NewTempProject.WebApi
{
/// <summary>
/// 显示swagger控制器的描述
/// </summary>
public class SwaggerControllerDescProvider : ISwaggerProvider
{
private readonly ISwaggerProvider _swaggerProvider;
private static ConcurrentDictionary<string, SwaggerDocument> _cache = new ConcurrentDictionary<string, SwaggerDocument>();
private readonly string _xml;
/// <summary>
///
/// </summary>
/// <param name="swaggerProvider"></param>
/// <param name="xml">xml文档路径</param>
public SwaggerControllerDescProvider(ISwaggerProvider swaggerProvider, string xml)
{
_swaggerProvider = swaggerProvider;
_xml = xml;
}
public SwaggerDocument GetSwagger(string rootUrl, string apiVersion)
{
string cacheKey = string.Format("{0}_{1}", rootUrl, apiVersion);
//只读取一次
if (!_cache.TryGetValue(cacheKey, out SwaggerDocument srcDoc))
{
srcDoc = _swaggerProvider.GetSwagger(rootUrl, apiVersion);
srcDoc.vendorExtensions = new Dictionary<string, object> { { "ControllerDesc", GetControllerDesc() } };
_cache.TryAdd(cacheKey, srcDoc);
}
return srcDoc;
}
/// <summary>
/// 从API文档中读取控制器描述
/// </summary>
/// <returns>所有控制器描述</returns>
public ConcurrentDictionary<string, string> GetControllerDesc()
{
string xmlpath = _xml;
ConcurrentDictionary<string, string> controllerDescDict = new ConcurrentDictionary<string, string>();
if (File.Exists(xmlpath))
{
XmlDocument xmldoc = new XmlDocument();
xmldoc.Load(xmlpath);
string type = string.Empty, path = string.Empty, controllerName = string.Empty;
string[] arrPath;
int length = -1, cCount = "Controller".Length;
XmlNode summaryNode = null;
foreach (XmlNode node in xmldoc.SelectNodes("//member"))
{
type = node.Attributes["name"].Value;
if (type.StartsWith("T:"))
{
//控制器
arrPath = type.Split('.');
length = arrPath.Length;
controllerName = arrPath[length - 1];
if (controllerName.EndsWith("Controller"))
{
//获取控制器注释
summaryNode = node.SelectSingleNode("summary");
string key = controllerName.Remove(controllerName.Length - cCount, cCount);
if (summaryNode != null && !string.IsNullOrEmpty(summaryNode.InnerText) && !controllerDescDict.ContainsKey(key))
{
controllerDescDict.TryAdd(key, summaryNode.InnerText.Trim());
}
}
}
}
}
return controllerDescDict;
}
}
}
3、添加功能性js文件
在Scripts文件夹中添加SwaggerConfig.js脚本文件,将其设置为“嵌入的资源”。
作用:汉化、显示控制器注释。
'use strict';
window.SwaggerTranslator = {
_words: [],
translate: function () {
var $this = this;
$('[data-sw-translate]').each(function () {
$(this).html($this._tryTranslate($(this).html()));
$(this).val($this._tryTranslate($(this).val()));
$(this).attr('title', $this._tryTranslate($(this).attr('title')));
});
},
setControllerSummary: function () {
$.ajax({
type: "get",
async: true,
url: $("#input_baseUrl").val(),
dataType: "json",
success: function (data) {
var summaryDict = data.ControllerDesc;
var id, controllerName, strSummary;
$("#resources_container .resource").each(function (i, item) {
id = $(item).attr("id");
if (id) {
controllerName = id.substring(9);
strSummary = summaryDict[controllerName];
if (strSummary) {
$(item).children(".heading").children(".options").first().prepend('<li class="controller-summary" title="' + strSummary + '">' + strSummary + '</li>');
}
}
});
}
});
},
_tryTranslate: function (word) {
return this._words[$.trim(word)] !== undefined ? this._words[$.trim(word)] : word;
},
learn: function (wordsMap) {
this._words = wordsMap;
}
};
/* jshint quotmark: double */
window.SwaggerTranslator.learn({
"Warning: Deprecated": "警告:已过时",
"Implementation Notes": "实现备注",
"Response Class": "响应类",
"Status": "状态",
"Parameters": "参数",
"Parameter": "参数",
"Value": "值",
"Description": "描述",
"Parameter Type": "参数类型",
"Data Type": "数据类型",
"Response Messages": "响应消息",
"HTTP Status Code": "HTTP状态码",
"Reason": "原因",
"Response Model": "响应模型",
"Request URL": "请求URL",
"Response Body": "响应体",
"Response Code": "响应码",
"Response Headers": "响应头",
"Hide Response": "隐藏响应",
"Headers": "头",
"Try it out!": "试一下!",
"Show/Hide": "显示/隐藏",
"List Operations": "显示操作",
"Expand Operations": "展开操作",
"Raw": "原始",
"can't parse JSON. Raw result": "无法解析JSON. 原始结果",
"Model Schema": "模型架构",
"Model": "模型",
"apply": "应用",
"Username": "用户名",
"Password": "密码",
"Terms of service": "服务条款",
"Created by": "创建者",
"See more at": "查看更多:",
"Contact the developer": "联系开发者",
"api version": "api版本",
"Response Content Type": "响应Content Type",
"fetching resource": "正在获取资源",
"fetching resource list": "正在获取资源列表",
"Explore": "浏览",
"Show Swagger Petstore Example Apis": "显示 Swagger Petstore 示例 Apis",
"Can't read from server. It may not have the appropriate access-control-origin settings.": "无法从服务器读取。可能没有正确设置access-control-origin。",
"Please specify the protocol for": "请指定协议:",
"Can't read swagger JSON from": "无法读取swagger JSON于",
"Finished Loading Resource Information. Rendering Swagger UI": "已加载资源信息。正在渲染Swagger UI",
"Unable to read api": "无法读取api",
"from path": "从路径",
"server returned": "服务器返回"
});
$(function () {
window.SwaggerTranslator.translate();
window.SwaggerTranslator.setControllerSummary();
});
4、修改项目的“XML文档文件”属性
这里的xml文件路径要喝SwaggerConfig.cs中设置的xmlFile对应上
5、修改SwaggerConfig.cs
Swagger安装完毕后App_Start文件夹下才会有SwaggerConfig.cs文件,修改后的SwaggerConfig.cs的代码如下:
using System.Web.Http;
using Swashbuckle.Application;
using System.Linq;
using System.Reflection;
using System.Web;
using WebApi;
using SeaSky.NewTempProject.WebApi;
[assembly: PreApplicationStartMethod(typeof(SwaggerConfig), "Register")]
namespace WebApi
{
public class SwaggerConfig
{
public static void Register()
{
Assembly thisAssembly = typeof(SwaggerConfig).Assembly;
GlobalConfiguration.Configuration
.EnableSwagger(c =>
{
c.SingleApiVersion("v1.1", "SeaSky.NewTempProject.WebApi");
string xmlFile = string.Format("{0}/App_Data/SeaSky.NewTempProject.WebApi.XML", System.AppDomain.CurrentDomain.BaseDirectory);
if (System.IO.File.Exists(xmlFile))
{
c.IncludeXmlComments(xmlFile);
}
c.ResolveConflictingActions(apiDescriptions => apiDescriptions.First());
c.CustomProvider((defaultProvider) => new SwaggerControllerDescProvider(defaultProvider, xmlFile));
})
.EnableSwaggerUi(c =>
{
c.InjectJavaScript(Assembly.GetExecutingAssembly(), "SeaSky.NewTempProject.WebApi.Scripts.SwaggerConfig.js");
});
}
}
}
6、配置完成结构图
运行WebApi (eg:localhost:13666/swagger/ui/index#),图示 ↓↓↓
7、 本地运行Swagger有注释,发布项目没有注释
问题描述:
xml注释文件 生成在了bin文件夹下,发布至服务器上没有找到对应的文件
解决方案:
执行配置第5步时 将项目的“XML文档文件”属性 放置在App_Data下(而不是放在bin文件夹下)
并修改WebApi --> Properties --> FolderProfile.pubxml
Java配置
Maven 导包
<!-- Swagger相关依赖 -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.9.2</version>
</dependency>
导包介绍
swagger2 是新版 swagger
swagger-ui 是UI显示
Swagger配置文件
主要注意swagger 对于api 接口的筛选 --> Docket .apis()
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean(value = "defaultApi")
public Docket defaultApi() {
return new Docket(DocumentationType.SWAGGER_2)
.groupName("海天接口呢")
.apiInfo(new ApiInfoBuilder()
.version("1.0")
.title("Seasky REST API")
.description("Seasky REST API")
//.termsOfServiceUrl("")
.contact(new Contact("Seasky", "BBB", "CCC"))
.build()
)
.select()
// 生成所有API接口
.apis(RequestHandlerSelectors.basePackage("com.seasky.web.controller"))
// 只生成被ApiOperation这个注解注解过的api接口
//.apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))
// 只生成被Api这个注解注解过的类接口
// .apis(RequestHandlerSelectors.withClassAnnotation(Api.class))
.paths(PathSelectors.any())
.build();
}
}
图示
运行项目 (eg:localhost:9080/swagger-ui.html)
上一篇: swagger
推荐阅读
-
分享一个集成.NET Core+Swagger+Consul+Polly+Ocelot+IdentityServer4+Exceptionless+Apollo的入门级微服务开发框架
-
SpringBoot2 整合 Swagger2
-
.NetCore2.1 WebAPI 根据swagger.json自动生成客户端代码
-
NetCore3.1——Swagger配置
-
surging如何使用swagger 组件测试业务模块
-
Springfox-Swagger源码分析
-
Swagger访问路径添加前缀
-
SpringMVC和Swagger整合方法
-
SpringMVC 中配置 Swagger 插件的教程(分享)
-
SpringBoot+Swagger-ui自动生成API文档