当前位置:   article > 正文

超简单配置接口文档Swagger和Knife4j教程_knife4j接口文档默认地址

knife4j接口文档默认地址

前言:

这里介绍了如何配置Swagger 3.0Knife4j 3.0版本,强烈建议大家使用Knife4j,因为它的前身是swagger-bootstrap-ui,是在Swagger的基础上进行了界面的优化,使用起来比Swagger舒服了太多

1.配置Swagger

1.首先在pom.xml中加入依赖

 <!-- SpringBoot整合springfox-swagger3 -->
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-boot-starter</artifactId>
            <version>3.0.0</version>
        </dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

2.加入配置文件

package com.example.demo.config;

import io.swagger.annotations.ApiOperation;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.ApiInfoBuilder;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.oas.annotations.EnableOpenApi;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.service.Contact;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;

@EnableOpenApi   // 开启Swagger自定义接口文档
@Configuration   // 相当于Spring配置中的<beans>
public class SwaggerConfig {
	// 读取yaml中的配置
   @Value("${swagger.enable}")
    private Boolean enable;

    @Bean   // 相当于Spring 配置中的<bean>
    public Docket createRestApi() {
        return new Docket(DocumentationType.OAS_30)
                // 配置swagger是否生效
                .enable(enable)
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))
                .paths(PathSelectors.any())
                .build();
    }
    // API基础信息定义(就是更新Swagger默认页面上的信息)
    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                .title("Swagger3接口文档测试")
                .description("这里是文档描述")
                .contact(new Contact("小盛", "网址", "邮箱"))
                .version("v1.0")
                .build();
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42

3.创建一个controller

@RestController
@RequestMapping(value = "/api/v2/user", produces = MediaType.APPLICATION_JSON_VALUE)
@Api(tags = "用户管理") 
public class User {

    @GetMapping
    @ApiOperation(value = "分页查询")
    public String page(){
        return "嘿嘿";
    }

    @GetMapping("/haha")
    @ApiOperation(value = "分页查询2")
    public List<UserEntity> getData(){
        List<UserEntity> list = new ArrayList<>();
        list.add(new UserEntity().setName("花花").setSex("男"));
        list.add(new UserEntity().setName("小王").setSex("女"));
        return list;
    }

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

4.打开网址http://localhost:8080/swagger-ui/index.html即可看到如下接口文档界面
其中ip和端口设置为你自己的即可

请添加图片描述
5.yaml配置,如果上生产了需要禁用swagger,则改为false即可:

#是否激活 swagger true or false
swagger:
  enable: true
  • 1
  • 2
  • 3

2.配置Knife4j(强烈推荐)

Knife4j使用文档

友情提示

1、目前已经发行的Knife4j版本,Knife4j本身已经引入了springfox,开发者在使用时不用再单独引入Springfox的具体版本,否额会导致版本冲突。另外在网关层聚合(例如gateway)时,必须禁用Knife4j的增强模式

2、使用Knife4j2.0.6及以上的版本,Spring Boot的版本必须大于等于2.2.x

3、微服务聚合组件Knife4jAggregation强势发布,聚合OpenAPI文档太简单了,详见文档

4、Knife4j独立运行版本Knife4jAggregationDesktop强势发布,使用Knife4j渲染OpenAPI文档很简单,详见文档
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

1.pom.xml加入依赖

 <dependency>
            <groupId>com.github.xiaoymin</groupId>
            <artifactId>knife4j-spring-boot-starter</artifactId>
            <version>3.0.2</version>
 </dependency>
  • 1
  • 2
  • 3
  • 4
  • 5

2.配置文件

package com.example.demo.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.ApiInfoBuilder;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.service.Contact;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2WebMvc;

@Configuration
@EnableSwagger2WebMvc
public class Knife4jConfiguration {

	@Value("${swagger.enable}")
    private Boolean enable;

    @Bean(value = "defaultApi2")
    public Docket defaultApi2() {
        Docket docket=new Docket(DocumentationType.SWAGGER_2)
        		.enable(enable)
                .apiInfo(
                	new ApiInfoBuilder()
					//.title("swagger-bootstrap-ui-demo RESTful APIs")
	                .description("# swagger-bootstrap-ui-demo RESTful APIs")
	                .termsOfServiceUrl("http://www.xx.com/")
	                .contact(new Contact("小盛", "123", "504040410@qq.com"))
	                .version("1.0")
	                .build()
                )
                //分组名称
                .groupName("2.X版本")
                .select()
                //这里指定你自己的Controller扫描包路径
                .apis(RequestHandlerSelectors.basePackage("com.example.demo.controller"))
                .paths(PathSelectors.any())
                .build();
        return docket;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42

3.编写你的controller

@RestController
@RequestMapping(value = "/api/v2/user", produces = MediaType.APPLICATION_JSON_VALUE)
@Api(tags = "用户管理")
public class User {

    @GetMapping
    @ApiOperation(value = "分页查询")
    public String page(){
        return "嘿嘿";
    }

    @GetMapping("/haha")
    @ApiOperation(value = "分页查询2")
    public List<UserEntity> getData(){
        List<UserEntity> list = new ArrayList<>();
        list.add(new UserEntity().setName("花花").setSex("男"));
        list.add(new UserEntity().setName("小王").setSex("女"));
        return list;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

4.访问http://localhost:8080/doc.html#/home,ip和端口改为你自己的,接口文档界面如下

请添加图片描述
5.yaml配置,如果上生产了需要禁用swagger,则改为false即可:

#是否激活 swagger true or false
swagger:
  enable: true
  • 1
  • 2
  • 3

3.注解使用

  • @Api:用在controller类上,描述API接口,例:
@Api(tags = "用户管理")
  • 1
  • @ApiOperation:用在controller的方法上,例:
@ApiOperation(value = "分页查询")
  • 1
  • @ApiModel:用在实体类上
  • @ApiModelProperty:描述对象属性
@Data
@Accessors(chain = true)// 这个是lombok注解
@ApiModel
public class UserEntity {

    @ApiModelProperty("名称")
    private String name;
    @ApiModelProperty("性别")
    private String sex;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

以下三个注解实际上很少用

  • @ApiImplicitParams:描述接口参数
  • @ApiResponses:描述接口响应
  • @ApiIgnore:忽略不显示接口参数
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/93435
推荐阅读
相关标签
  

闽ICP备14008679号