Swagger是一个接口文档工具,使得后端开发者在完成后端接口的同时即完成了接口文档的编写,规范的定义了接口的详细信息,提高效率的工具。
以下是我在 IDEA 中用 SpringBoot2.x 版本整合和使用 swagger2.9.x 版本的教程。
1.首先在maven central仓库中搜索springfox swagger, 选择想要导入项目的依赖版本, 我这里使用的是2.9.2版本
<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>