一、Swagger简介
-
在日常的工作中,我们往往需要给前端(WEB端、IOS、Android)或者第三方提供接口,这个时候我们就需要给他们提供一份详细的API说明文档。但维护一份详细的文档可不是一件简单的事情。
-
首先,编写一份详细的文档本身就是一件很费时费力的事情,另一方面,由于代码和文档是分离的,所以很容易导致文档和代码的不一致。这篇文章我们就来分享一种API文档维护的方式,即通过Swagger来自动生成Restuful API文档。
-
那什么是Swagger?我们可以直接看下官方的描述:
THE WORLD'S MOST POPULAR API TOOLING Swagger is the world’s largest framework of API developer tools for the OpenAPI Specification(OAS), enabling development across the entire API lifecycle, from design and documentation, to test and deployment.
-
这段话首先告诉大家Swagger是世界上最流行的API工具,并且Swagger的目的是支撑整个API生命周期的开发,包括设计、文档以及测试和部署。这篇文章中我们会用到Swagger的文档管理和测试功能。
-
对Swagger的作用有了基本的认识后,我们现在来看看怎么使用。
二、Swagger与Spring boot集成
- 第一步,引入对应jar包:
<!-- 集成swagger-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.6.0</version>
</dependency>
- 第二步,基本信息配置:
@Configuration
@EnableSwagger2
public class Swagger2Config {
/**
* 在这个配置类里面我么实例化了一个Docket对象,这个对象主要包括三个方面的信息:
--整个API的描述信息,即ApiInfo对象包括的信息,这部分信息会在页面上展示。
--指定生成API文档的包名。
--指定生成API的路径。按路径生成API可支持四种模式,这个可以参考其源码:
* */
@Bean
public Docket createRestApi(){
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(apiInfo())
.select()
.apis(RequestHandlerSelectors.basePackage("com.zzw.bootlaunch.rest"))
.paths(PathSelectors.regex("/rest/.*"))
.build();
}
private ApiInfo apiInfo(){
return new ApiInfoBuilder()
.title("XXX系统的API")
.description("这是一个XXX系统的描述")
.termsOfServiceUrl("http://127.0.0.1:8080")
.contact("zhangsanfeng")
.version("V1.0")
.build();
}
}
基础的配置是对整个API文档的描述以及一些全局性的配置,对所有接口起作用。这里涉及到两个注解:
- @Configuration是表示这是一个配置类,是JDK自带的注解,前面的文章中也已做过说明。
- @EnableSwagger2的作用是启用Swagger2相关功能。
在这个配置类里面我么实例化了一个Docket对象,这个对象主要包括三个方面的信息:
- 整个API的描述信息,即ApiInfo对象包括的信息,这部分信息会在页面上展示。
- 指定生成API文档的包名。
- 指定生成API的路径。按路径生成API可支持四种模式,这个可以参考其源码:
public class PathSelectors {
private PathSelectors() {
throw new UnsupportedOperationException();
}
public static Predicate<String> any() {
return Predicates.alwaysTrue();
}
public static Predicate<String> none() {
return Predicates.alwaysFalse();
}
public static Predicate<String> regex(final String pathRegex) {
return new Predicate<String>() {
public boolean apply(String input) {
return input.matches(pathRegex);
}
};
}
public static Predicate<String> ant(final String antPattern) {
return new Predicate<String>() {
public boolean apply(String input) {
AntPathMatcher matcher = new AntPathMatcher();
return matcher.match(antPattern, input);
}
};
}
}
从源码可以看出,Swagger总共支持任何路径都生成、任何路径都不生成以及正则匹配和ant 模式匹配四种方式。大家可能比较熟悉的是前三种,最后一种ant匹配,如果不熟悉ant的话就直接忽略吧,前三种应该足够大家在日常工作中使用了。
按照rest风格编写服务类
@Slf4j
@RestController
@RequestMapping("/rest")
public class ArticleRestController {
@Resource
ArticleRestService articleRestService;
/**
* 保存
* */
@RequestMapping(value="/article", method = RequestMethod.POST, produces = "application/json")
public AjaxResponse saveArticle(@RequestBody Article article){
log.info("saveArticle:{}",article);
//操作数据库
articleRestService.saveArticle(article);
return AjaxResponse.sucess(article);
}
/**
* 删除
* */
@RequestMapping(value="/article/{id}", method = RequestMethod.DELETE, produces = "application/json")
public AjaxResponse delArticle(@PathVariable Long id){
log.info("delArticle:{}", id);
//操作数据库
articleRestService.deleteArticle(id);
return AjaxResponse.sucess(id);
}
/**
* 更新
* */
@RequestMapping(value="/article/{id}", method = RequestMethod.PUT, produces = "application/json")
public AjaxResponse updateArtice(@PathVariable Long id, @RequestBody Article article){
log.info("updateArtice:{}",article);
//操作数据库
article.setId(id);
articleRestService.updateArticle(article);
return AjaxResponse.sucess(article);
}
/**
* 获取单条记录
* */
@RequestMapping(value = "/article/{id}", method = RequestMethod.GET, produces = "application/json")
public AjaxResponse getArtice(@PathVariable Long id){
/*Article article = Article.builder().id(22L).author("张三").content("我是内容内容....")
.title("我是标题标题...").createTime(new Date()).build();
log.info("getArtice:{}", article);*/
//操作数据库
Article article = articleRestService.getArticle(id);
return AjaxResponse.sucess(article);
}
- 第三步,启动并访问
启动Spring boot,然后访问:http://127.0.0.1:8080/swagger-ui.html 即可看到如下结果:
我们还可以点进去看一下每一个具体的接口,我们这里以“POST /rest/article”这个接口为例:
可以看到,Swagger为每一个接口都生成了返回结果和请求参数的示例,并且能直接通过下面的"try it out"进行接口访问,方面大家对接口进行测试。整体上感觉Swagger还是很强大的,配置也比较简单。
三、Swagger API详细配置
不过大家看到这里肯定会有点疑问:
-
第一个问题:这个返回结果和请求参数都没有中文文字性的描述,这个可不可以配置?
-
第二个问题:这个请求参应该是直接根据对象反射出来的结果,但是不是对象的每个属性都是必传的,另外参数的值也不一定满足我们的需求,这个能否配置?
答案肯定是可以的,现在我们就来解决这两个问题,直接看配置的代码:
列表页:
可以看到,现在接口都位于Article这个tag下,并且接口后面也有了我们配置好的说明。我们再看下”POST /rest/article“这个接口的详情页:
如果我们的请求参数是一个对象,那如何配置呢?这就涉及到另外两个注解:@ApiModel和@ApiModelProperty,我们还是先看代码,然后再解释,这样更容易理解:
@ApiModel(value="article对象",description="新增&更新文章对象说明")
public class Article {
@Id
@GeneratedValue
@ApiModelProperty(name = "id",value = "文章ID",required = false,example = "1")
private Long id;
@ApiModelProperty(name = "title",value = "文章标题",required = true,example = "测试文章标题")
private String title;
@ApiModelProperty(name = "summary",value = "文章摘要",required = true,example = "测试文章摘要")
private String summary;
@ApiModelProperty(hidden = true)
private Date createTime;
@ApiModelProperty(hidden = true)
private Date publicTime;
@ApiModelProperty(hidden = true)
private Date updateTime;
@ApiModelProperty(hidden = true)
private Long userId;
@ApiModelProperty(name = "status",value = "文章发布状态",required = true,example = "1")
private Integer status;
@ApiModelProperty(name = "type",value = "文章分类",required = true,example = "1")
private Integer type;
}
@ApiModel是对整个类的属性的配置:
- value:类的说明
- description:详细描述
@ApiModelProperty是对具体每个字段的属性配置:
- name:字段名称
- value:字段的说明
- required:是否必须
- example:示例值
- hidden:是否显示
完成上面的配置后,我们再来看效果:
点击Try it out后,我们就可以看到返回的结果:
操作还是很方便的,相比Junit和postman,通过Swagger来测试会更加便捷,当然,Swagger的测试并不能代替单元测试,不过,在联调的时候还是有非常大的作用的。
四、总结
总体上来说,Swagger的配置还是比较简单的,并且Swagger能够自动帮我们生成文档确实为我们节省了不少工作,对后续的维护也提供了很大的帮助。除此之外,Swagger还能根据配置自动为我们生成测试的数据,并且提供对应的HTTP方法,这对我们的自测和联调工作也有不少的帮助,所以我还是推荐大家在日常的开发中去使用Swagger,应该可以帮助大家在一定程度上提高工作效率的。那我们怎么才能在生产环节中关闭这个功能呢?