中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot如何集成Swagger3

發布時間:2021-12-29 12:44:53 來源:億速云 閱讀:338 作者:小新 欄目:開發技術

這篇文章主要介紹SpringBoot如何集成Swagger3,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

一,什么是swagger?

1,  Swagger 是一個規范和完整的文檔框架,

    用于生成、描述、調用和可視化 RESTful 風格的 Web 服務文檔

    官方網站:https://swagger.io/

2,使用swagger要注意的地方:

     在生產環境中必須關閉swagger,

     它本身只用于前后端工程師之間的溝通,

     可以專門使用一臺內部服務器來展示ui供訪問,

     即使在這上面要做好安全措施

3,  因為swagger3.0.0已發布,本文使用了最新版

     如果有還在用2.x版本的請參考時注意區分

二,SpringBoot 集成swagger3

 pom.xml 集成Swagger3依賴

<!-- swagger3 接口文檔生成器 -->
		<dependency>
			<groupId>io.springfox</groupId>
			<artifactId>springfox-boot-starter</artifactId>
			<version>3.0.0</version>
			<exclusions>
				<exclusion>
					<groupId>org.springframework.plugin</groupId>
					<artifactId>spring-plugin-core</artifactId>
				</exclusion>
				<exclusion>
					<groupId>org.springframework.plugin</groupId>
					<artifactId>spring-plugin-metadata</artifactId>
				</exclusion>
			</exclusions>
		</dependency>

Swagger3 配置對象定義

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;
 
@Configuration
@EnableOpenApi
public class Swagger3Config {
	@Bean
    public Docket createRestApi() {
        return new Docket(DocumentationType.OAS_30)
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.basePackage("com.digipower.controller"))
                .paths(PathSelectors.any())
                .build();
    }
 
    private ApiInfo apiInfo() {
        return new ApiInfoBuilder().title("在奮斗的大道上 - 微信預約查檔系統").termsOfServiceUrl("https://blog.csdn.net/zhouzhiwengang")
				.description("API接口")
				.contact(new Contact("https://blog.csdn.net/zhouzhiwengang","",""))
				.version("3.0").build();
    }
 
}

SpringBoot 集成Swagger3 接口文檔效果截圖

SpringBoot如何集成Swagger3

 SpringBoot 訪問Swagger3接口文檔地址

默認接口訪問地址:http://192.168.0.1:5988/swagger-ui/

三,swagger3 注解標簽使用

@ApiModel用于類上面說明功能

@ApiModelProperty用于字段上說明功能

示列截圖:

SpringBoot如何集成Swagger3

@Api用來指定一個controller中的各個接口的通用說明

@ApiOperation用來說明一個方法

@ApiImplicitParams:用來包含多個包含多個 @ApiImplicitParam

@ApiImplicitParam:用來說明一個請求參數 

示列截圖:

SpringBoot如何集成Swagger3

 溫馨提示:針對任何請求參數結構說明,請一定記得要添加@ApiParam 標簽,如果不添加@ApiParam標簽,在Swagger3文檔中針對參數結構說明就是空

以上是“SpringBoot如何集成Swagger3”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

定边县| 南皮县| 鄂州市| 潮州市| 巴东县| 庆安县| 永福县| 秦皇岛市| 泸州市| 广灵县| 新乡县| 观塘区| 合肥市| 六枝特区| 宁蒗| 万宁市| 钟山县| 洮南市| 卢龙县| 南投市| 台湾省| 龙里县| 延津县| 南汇区| 泽州县| 会东县| 益阳市| 漳州市| 澎湖县| 城口县| 建瓯市| 理塘县| 司法| 当阳市| 长治县| 刚察县| 兴仁县| 南陵县| 屏山县| 静安区| 永新县|