当前位置: 首页 > article >正文

SpringBoot集成swagger3

一、增加依赖
springboot是2.2.13版本

 implementation 'org.springdoc:springdoc-openapi-ui:1.7.0'


二、增加swagger配置

import io.swagger.v3.oas.models.OpenAPI;
import io.swagger.v3.oas.models.info.Info;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;


@Configuration
public class Swagger3Config {
    @Bean
    public OpenAPI customOpenAPI() {
        return new OpenAPI()
                .info(new Info()
                        .title("Swagger3 Test")
                        .version("1.0")
                        .description("This is a sample Spring Boot RESTful service using springdoc-openapi and OpenAPI 3."));
    }
}

三、配置controller方法,增加注解

import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.ArrayList;
import java.util.List;


@Tag(name = "BenefitsInfoQueryController Interface", description = "Operations pertaining to user management")
@RestController
@RequestMapping("/benefits/info-query")
public class BenefitsInfoQueryController {

    @Operation(summary = "查询订购信息", description = "查询订购信息")
    @PostMapping("query-order-info")
    public List<OrderQueryRespVO> getInitDeliveryOrderItems(@RequestBody OrderQueryReqVO condition) {
        List<OrderQueryRespVO> list = new ArrayList<>();
        list.add(OrderQueryRespVO.builder().serviceNumber("511511515").build());
        return list;
    }
}

四、启动服务,访问
 

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

注意如果应用配置了path则路径为:http://localhost:8080/my-application/swagger-ui.html

server:
  servlet:
    context-path: /my-application
  port: 8080


界面如下图:

访问这个可以获取api文档,json形式,可以用于导出接口等

http://localhost:8080/my-applicationhttp://localhost:8080/


http://www.kler.cn/a/419076.html

相关文章:

  • vue3中 axios 发送请求 刷新token 封装axios
  • leetcode 之二分查找(Java实现)(1)
  • MySQL —— MySQL 程序
  • 玄机应急:Apache日志分析Mysql应急Redis应急
  • keil 5. Flash Timeout. Reset the Target and try it again.
  • Mac 环境下类Xshell 的客户端介绍
  • 【Docker】部署nginx
  • 常用元器件使用方法36:USB转串口芯片CH340X
  • 【07】MySQL中的DQL(数据查询语言)详解
  • 【JavaWeb maven基础知识总结】
  • RabbitMQ rabbitmq.conf配置文件详解
  • 算法训练营day22(二叉树08:二叉搜索树的最近公共祖先,插入,删除)
  • spring boot3.3.5 logback-spring.xml 配置
  • git基本操作说明
  • 网络原理(1)(JavaEE)
  • 【leetcode100】螺旋矩阵
  • 数据资产管理是什么?为什么重要?核心组成部分(分类分级、登记追踪、质量管理、安全合规)、实施方法、未来趋势、战略意义
  • 在 Ubuntu 20.04 上使用 Lux 下载 Bilibili 视频的详细教程
  • Web API - Clipboard
  • Qt PDF 前置课
  • RTC 实时时钟实验
  • oracle RAC各版本集群总结和常用命令汇总
  • C语言——库函数
  • 最大值(Java Python JS C++ C )
  • 课程答疑微信小程序设计与实现
  • 概率论——假设检验