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

溫馨提示×

溫馨提示×

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

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

springboot如何整合swagger

發布時間:2021-11-25 09:19:44 來源:億速云 閱讀:178 作者:小新 欄目:編程語言

小編給大家分享一下springboot如何整合swagger,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

springboot整合swagger

簡介

swagger 提供最強大,最易用的工具,以充分利用OpenAPI規范。

官網 : https://swagger.io/

準備工作

  • pom.xml jar引入:  <swagger.version>2.9.2</swagger.version>

     <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>${swagger.version}</version>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>${swagger.version}</version>
        </dependency>

目的

之前使用swagger都是直接在類,方法,實體上寫api引入的參數,這給人一種代碼很不清爽的感覺,所以采用yaml文件編輯的模式,是代碼看著更簡單。

項目結構

  • 1.創建SwaggerConfig類

package com.honghh.bootfirst.config;

import io.swagger.annotations.ApiOperation;
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.service.ApiInfo;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;

/**
 * ClassName: SwaggerConfig
 * Description:
 *
 * @author honghh
 * @date 2019/02/20 14:28
 */
@Configuration
@EnableSwagger2
public class SwaggerConfig{

    @Bean
    public Docket createRestApi() {
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
                //加了ApiOperation注解的類,生成接口文檔
                .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))
                //包下的類,生成接口文檔
                //.apis(RequestHandlerSelectors.basePackage("com.honghh.bootfirst.controller"))
                .paths(PathSelectors.any())
                .build();
    }

    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                .title("boot-demo")
                .description("boot-demo文檔")
                .termsOfServiceUrl("http://www.boot-demo.cn")
                .version("1.0.0")
                .build();
    }

}
  • 2.引入swagger展示層代碼,代碼我將上傳到碼云 https://gitee.com/honghh/boot-demo.git

  • 3.配置yaml文件

#必要字段!Swagger規范版本,必須填2.0,否則該YAML將不能用于Swagger其他組件
swagger: '2.0'
#必要字段!描述API接口信息的元數據
info:
  #接口文檔的描述
  description: swagger說明文檔,讓一切都變得如此簡單。
  #版本號
  version: 1.0.0
  #接口標題
  title: boot-demo
#Swagger會提供測試用例,host指定測試時的主機名,如果沒有指定就是當前主機,可以指定端口.
host: localhost:8080
#定義的api的前綴,必須已/開頭,測試用例的主機則為:host+bashPath
#basePath: /boot-demo

#指定調用接口的協議,必須是:"http", "https", "ws", "wss".默認是http.-表示是個數組元素,即schemes接受一個數組參數
schemes:
  - http
  - https

#對應與http協議頭request的Accept,調用者可接受類型,默認是*/*,定義的類型必須是http協議定義的 Mime Types,RestfulAPI一般定義成application/json
#這兩個是對所有接口的全局設置,在細化的接口中是還可以對應這兩個屬性來覆蓋全局屬性
produces:
  - application/json

#定義接口數據
paths:
  /myInfo:
    #必要字段!定義HTTP操作方法,必須是http協議定義的方法
    get:
      tags:
        - MyInfo 用戶信息
      #接口概要
      summary: 用戶信息
      #接口描述
      description: 查詢出所有用戶的所有信息,用戶名,別名
      parameters:
        - name: id
          description: 用戶ID
          in: query
          type: integer
          required: true
      #返回值描述,必要自動
      responses:
        #返回的http狀態碼
        200:
          description: 所有用戶信息或者用戶的集合信息
          #描述返回值
          schema:
            #返回值格式,可選的有array,integer,string,boolean
            $ref: '#/definitions/myInfo'

#定義數據模型
definitions:
  R:
    type: object
    properties:
      code:
        description: 狀態碼 0:成功  非0:失敗
        type: integer
        format: int32
      msg:
        description: 失敗原因
        type: string
  myInfo:
    type: object
    properties:
      id:
        description: ID
        type: integer
        format: int32
      age:
        description: 年齡
        type: integer
      name:
        description: 姓名
        type: string

4.啟動項目,輸入:http://localhost:8080/swagger/index.html 運行如圖
springboot如何整合swagger
springboot如何整合swagger

看完了這篇文章,相信你對“springboot如何整合swagger”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

灵宝市| 清原| 瑞丽市| 南康市| 通城县| 龙川县| 哈尔滨市| 南岸区| 白玉县| 庆安县| 房产| 大英县| 响水县| 万源市| 沈阳市| 阿图什市| 新宁县| 巴林左旗| 海原县| 延吉市| 巨鹿县| 磐石市| 杨浦区| 宜兴市| 井冈山市| 天峻县| 航空| 桐梓县| 宜春市| 庆安县| 额济纳旗| 吴桥县| 西昌市| 阳朔县| 德兴市| 九江市| 邢台县| 南木林县| 吉安县| 北辰区| 伊川县|