IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> 【Java从零到架构师第③季】【48】SpringBoot-Swagger -> 正文阅读

[Java知识库]【Java从零到架构师第③季】【48】SpringBoot-Swagger


持续学习&持续更新中…

守破离


接口文档—Swagger

https://swagger.io/

在这里插入图片描述

在这里插入图片描述

	<dependency>
	    <groupId>io.swagger</groupId>
	    <artifactId>swagger-models</artifactId>
	    <version>1.6.2</version>
	</dependency>

基本使用

在这里插入图片描述

在这里插入图片描述

不使用starter

	<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>
@Configuration
@EnableSwagger2
public class SwaggerConfig {

    @Bean
    public Docket docket(Environment environment) {
        return new Docket(DocumentationType.SWAGGER_2)
                // 项目上线了就不应该开启本功能了,以下方式任选其一
//                .enable(environment.acceptsProfiles(Profiles.of("dev"))) // 是dev
                .enable(!environment.acceptsProfiles(Profiles.of("prd"))) // 不是prd
                .apiInfo(apiInfo());
    }

//    @Bean
//    public Docket docket() {
//        return new Docket(DocumentationType.SWAGGER_2)
                .enable(false) // 项目上线了就不应该开启本功能了
//                .apiInfo(apiInfo());
//    }

    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                .title("LP驾考")
                .description("这是一份详细的API接口文档")
                .version("1.0.0")
                .build();
    }
}

使用starter(Swagger3.0)

	<dependency>
	    <groupId>io.springfox</groupId>
	    <artifactId>springfox-boot-starter</artifactId>
	    <version>3.0.0</version>
	</dependency>
@Configuration
@EnableOpenApi
public class SwaggerConfig {
    @Autowired
    private Environment environment;
    
    @Bean
    public Docket docket() {
        return new Docket(DocumentationType.OAS_30)
                .enable(!environment.acceptsProfiles(Profiles.of("prd"))) // 不是prd就开启文档接口
                .apiInfo(apiInfo());
    }

    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                .title("LP驾考")
                .description("这是一份详细的API接口文档")
                .version("1.0.0")
                .build();
    }
}

API选择

在这里插入图片描述

	@Bean
	public Docket docket(Environment environment) {
	    return new Docket(DocumentationType.SWAGGER_2)
	            .enable(!environment.acceptsProfiles(Profiles.of("prd")))
	            .apiInfo(apiInfo())
	            .select()
	            .paths(PathSelectors.ant("/dict*/**"))
	            .build();
	}
    @Bean
    public Docket docket(Environment environment) {
        return new Docket(DocumentationType.SWAGGER_2)
                .enable(!environment.acceptsProfiles(Profiles.of("prd")))
                .apiInfo(apiInfo())
                .select()
                .paths(PathSelectors.regex("/dict.+"))
                .build();
    }
    @Bean
    public Docket docket(Environment environment) {
        return new Docket(DocumentationType.SWAGGER_2)
                .enable(!environment.acceptsProfiles(Profiles.of("prd")))
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.basePackage("programmer.lp.jk.controller"))
                .build();
    }
    @Bean
    public Docket docket(Environment environment) {
        return new Docket(DocumentationType.SWAGGER_2)
                .enable(!environment.acceptsProfiles(Profiles.of("prd")))
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.withClassAnnotation(RestController.class))
                .build();
    }
    @Bean
    public Docket docket(Environment environment) {
        return new Docket(DocumentationType.SWAGGER_2)
                .enable(!environment.acceptsProfiles(Profiles.of("prd")))
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.withMethodAnnotation(GetMapping.class))
                .build();
    }

忽略参数

如果我们想在构建文档时忽略Controller中方法的某些参数:

在这里插入图片描述

    @Bean
    public Docket docket(Environment environment) {
        return new Docket(DocumentationType.SWAGGER_2)
                .enable(!environment.acceptsProfiles(Profiles.of("prd")))
                .apiInfo(apiInfo())
                .ignoredParameterTypes(
                        HttpSession.class,
                        HttpServletRequest.class,
                        HttpServletResponse.class
                )
                .select()
                .apis(RequestHandlerSelectors.basePackage("programmer.lp.jk.controller"))
                .build();
    }

分组

有多少个分组就得有多少个Docket对象:

在这里插入图片描述

@Component
@Data
@ConfigurationProperties("swagger")
public class SwaggerProperties {
    String title;
    String version;
    String name;
    String url;
    String email;
    List<String> ignoredParameterTypes;
}
swagger:
  email: xxxx@foxmail.com
  ignored-parameter-types:
    - javax.servlet.http.HttpSession
    - javax.servlet.http.HttpServletRequest
    - javax.servlet.http.HttpServletResponse
  name: lpruoyu
  url: https://blog.csdn.net/weixin_44018671
  version: 1.0.0
  title: LP驾考
@Configuration
@EnableSwagger2
public class SwaggerConfig implements InitializingBean {
    @Bean
    public Docket examDocket() {
        return getDocket("考试",
                "包含模块:考场、科1科4、科2科3",
                "/exam.*");
    }

    @Bean
    public Docket dictDocket() {
        return getDocket("数据字典",
                "包含模块:数据字典类型、数据字典条目、省份、城市",
                "/(dict.*|plate.*)");
    }

    @Autowired
    private SwaggerProperties swaggerProperties;
    @Autowired
    private Environment environment;

    private Class[] ignoredParameterTypes;
    private boolean enable;

    private Class[] getIgnoredParameterTypes() {
        final List<Class<?>> iptClasses = new ArrayList<>();
        swaggerProperties.getIgnoredParameterTypes().forEach(v -> {
            try {
                iptClasses.add(Class.forName(v));
            } catch (ClassNotFoundException e) {
                e.printStackTrace();
            }
        });
        return iptClasses.toArray(new Class[iptClasses.size()]);
    }

    @Override
    public void afterPropertiesSet() throws Exception {
        ignoredParameterTypes = getIgnoredParameterTypes();
        enable = !environment.acceptsProfiles(Profiles.of("prd"));
    }

    private Docket getDocket(String groupName, String description, String pathRegex) {
        return new Docket(DocumentationType.SWAGGER_2)
                .enable(enable)
                .groupName(groupName)
//                .ignoredParameterTypes(
//                        HttpSession.class,
//                        HttpServletRequest.class,
//                        HttpServletResponse.class
//                )
                .ignoredParameterTypes(ignoredParameterTypes)
                .select()
                .paths(PathSelectors.regex(pathRegex))
                .build()
                .apiInfo(apiInfo(swaggerProperties.getTitle() + groupName, description));
    }

    private ApiInfo apiInfo(String title, String description) {
        return new ApiInfoBuilder()
                .title(title)
                .description(description)
                .version(swaggerProperties.getVersion())
                .contact(new Contact(
                        swaggerProperties.getName(),
                        swaggerProperties.getUrl(),
                        swaggerProperties.getEmail()))
                .build();
    }
}

参数类型

在这里插入图片描述

参数类型有:

  • query 对应 @RequestParam 类型的参数
  • body 对应 @RequestBody 类型的参数
  • header 对应 @RequestHeader 类型的参数

全局参数

在这里插入图片描述

使用Swagger-boot-starter 3.0:

    public Docket basicDocket() {
        RequestParameter tokenParam = new RequestParameterBuilder()
                .name(TokenFilter.TOKEN_HEADER)
                .description("用户登录令牌")
                .in(ParameterType.HEADER)
                .build();
        return new Docket(DocumentationType.SWAGGER_2)
                .globalRequestParameters(List.of(tokenParam))
                .enable(true)
                .ignoredParameterTypes(
                        HttpSession.class,
                        HttpServletRequest.class,
                        HttpServletResponse.class);
    }

常用注解

在这里插入图片描述

swagger-bootstrap-ui

Swagger默认的接口页面不太好看也不太直观,可以考虑试试这个:

  • https://doc.xiaominfo.com/knife4j/documentation/
  • https://github.com/xiaoymin/Swagger-Bootstrap-UI
	<dependency>
	    <groupId>com.github.xiaoymin</groupId>
	    <artifactId>swagger-bootstrap-ui</artifactId>
	    <version>1.9.6</version>
	</dependency>

访问:

http://${host}:${port}/${context_path}/doc.html

注意

  • 如果SpringBoot版本较高,请在application.yml中添加:
    spring:
      mvc:
        pathmatch:
          matching-strategy: ant_path_matcher
    

参考

小码哥-李明杰: Java从0到架构师③进阶互联网架构师.


本文完,感谢您的关注支持!


  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-05-24 17:59:01  更:2022-05-24 17:59:09 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/27 11:19:14-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码