springboot简单使用swagger

12 篇文章 0 订阅
3 篇文章 0 订阅
本文介绍了如何在 Spring Boot 项目中集成并使用 Swagger2 和 Swagger3,包括导入依赖、创建 Controller、配置 Swagger 以及访问 Swagger UI 的步骤。同时,解释了 OpenAPI 的概念及其在服务开放中的作用。
摘要由CSDN通过智能技术生成

目前可以选择使用swageer2或swagger3

swagger2

导入swagger2和ui依赖

<!-- swagger2 -->
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger2</artifactId>
    <version>2.9.2</version>
</dependency>
<!-- swagger-ui -->
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger-ui</artifactId>
    <version>2.9.2</version>
</dependency>

创建一个controller

package com.sky.controller;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * 创建一个Hello Worldcontroller,用来测试swagger
 */
@RestController
public class HelloController {
    @GetMapping("/hello")
    public String hello(){
        return "Hello Swagger";
    }
}

配置swagger

package com.sky.config;

import org.springframework.context.annotation.Configuration;
import springfox.documentation.swagger2.annotations.EnableSwagger2;

/**
 * 使用swagger需要创建一个配置类,并开启swagger配置
 * ps:swagger和 swagger2 不能通用
 *
 * 步骤:
 * 1.将swaggerConfig注册到ioc容器中
 * 2.开启swagger2功能
 * 3.运行项目,访问swagger-ui.html
 */
@Configuration // 就是@Component
@EnableSwagger2
public class SwaggerConfig {
}

运行项目,访问http://localhost:8080/swagger-ui.html

在这里插入图片描述

swagger3

导入依赖

<!--swagger3-->
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-boot-starter</artifactId>
    <version>3.0.0</version>
</dependency>

创建controller(与上面一致)

配置swagger3

package com.sky.config;

import org.springframework.context.annotation.Configuration;
import springfox.documentation.oas.annotations.EnableOpenApi;

/**
 * 使用swagger需要创建一个配置类,并开启swagger配置
 *
 * 步骤:
 * 1.将swaggerConfig注册到ioc容器中
 * 2.开启swagger3功能
 * 3.运行项目,访问http://localhost:8080/swagger-ui/index.html
 */
@Configuration // 就是@Component
@EnableOpenApi // 开启swagger3功能
public class SwaggerConfig {
}

运行项目,访问http://localhost:8080/swagger-ui/index.html

在这里插入图片描述

相关知识

OpenAPI 是什么?
Open API 即开放 API,也称开放平台。 所谓的开放 API(OpenAPI)是服务型网站常见的一种应用,网站的服务商将自己的网站服务封装成一系列
API(Application Programming Interface,应用编程接口)开放出去,供第三方开发者使用,这种行为就叫做开放网站的 API,所开放的 API 就被称作 OpenAPI(开放 API )。

参考资料:
https://blog.csdn.net/weixin_36836847/article/details/95206329
https://blog.csdn.net/lilinhai548/article/details/107394670

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值