Spring Boot中使用Swagger2构建强大的RESTful API文档
Posted cosyer的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot中使用Swagger2构建强大的RESTful API文档相关的知识,希望对你有一定的参考价值。
maven依赖:
<!-- Swagger --> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.7.0</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>2.7.0</version> </dependency>
<!-- Swagger --><dependency><groupId>io.springfox</groupId><artifactId>springfox-swagger2</artifactId><version>2.7.0</version></dependency><dependency><groupId>io.springfox</groupId><artifactId>springfox-swagger-ui</artifactId><version>2.7.0</version></dependency>
以上是关于Spring Boot中使用Swagger2构建强大的RESTful API文档的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot中使用Swagger2构建RESTful APIS(含源码)
Spring Boot中使用Swagger2构建强大的RESTful API文档