Swagger

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swagger相关的知识,希望对你有一定的参考价值。

1.创建spring boot项目
2.导入jar

<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.9.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency>

3.编写一个Hello 工程
4.配置swagger ==>Config

@Configurationbr/>@EnableSwagger2//开启swagger2
public class SwaggerConfig {
}

5.测试运行:

http://127.0.0.1:8080/swagger-ui.html

技术图片

配置swagger

swagger 的benan实例docket;
技术图片

技术图片

项目地址

以上是关于Swagger的主要内容,如果未能解决你的问题,请参考以下文章

API接口文档利器:Swagger

Swagger

Swagger笔记

Swagger入门教程

SwaggerUI笔记

swagger使用详解