91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

哈巴河县| 玛纳斯县| 卢龙县| 文水县| 名山县| 宁蒗| 左贡县| 大足县| 阆中市| 杨浦区| 德惠市| 西藏| 南昌县| 明星| 盱眙县| 平凉市| 上栗县| 天柱县| 曲沃县| 平阳县| 富顺县| 岑巩县| 榆社县| 诏安县| 山阳县| 岗巴县| 镇雄县| 山东| 梓潼县| 潞西市| 平果县| 奉节县| 新余市| 安泽县| 宜君县| 武穴市| 郎溪县| 新巴尔虎左旗| 嘉兴市| 凤山县| 高邑县|