成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

SpringBoot學習(三)——springboot快速整合swagger文檔

@[toc]

公司主營業(yè)務:成都網(wǎng)站制作、做網(wǎng)站、移動網(wǎng)站開發(fā)等業(yè)務。幫助企業(yè)客戶真正實現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競爭能力。創(chuàng)新互聯(lián)是一支青春激揚、勤奮敬業(yè)、活力青春激揚、勤奮敬業(yè)、活力澎湃、和諧高效的團隊。公司秉承以“開放、自由、嚴謹、自律”為核心的企業(yè)文化,感謝他們對我們的高要求,感謝他們從不同領域給我們帶來的挑戰(zhàn),讓我們激情的團隊有機會用頭腦與智慧不斷的給客戶帶來驚喜。創(chuàng)新互聯(lián)推出峰峰礦免費做網(wǎng)站回饋大家。

簡介

優(yōu)點

后端根據(jù)swagger語法,自動生成漂亮規(guī)范的接口文檔。

做交互測試。

劣勢

侵入式的,影響程序運行,尤其是傳參的時候。

注意

swagger 分1.2版本和2.0版本,差異較大。swagger1.2 即 swagger-ui ; swagger2.0 即 springfox-swagger 。本文介紹的使用方式是新的版本,即 springfox-swagger 。

發(fā)布生產,關閉swagger,以防泄漏項目接口文檔,被***

引入swagger組件

pom.xml中加入

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

代碼實戰(zhàn)

我看很多博主說swagger的配置代碼要和項目啟動文件在同級目錄,即如下

SpringBoot學習(三)—— springboot快速整合swagger文檔

但是,移入config目錄下,經過測試,也是正常的,那這樣就看個人習慣了。

DemoApplication.java

package com.example;

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;

//通過 @Configuration 注解,讓 Spring 來加載該類配置。
//再通過 @EnableSwagger2 注解來啟用 Swagger2。
@Configuration
@EnableSwagger2
public class DemoSwagger {
    @Bean
    public Docket api() {
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
                // 指定要掃描的包路徑
             .apis(RequestHandlerSelectors.basePackage("com.example.controller"))
                .paths(PathSelectors.any())
                .build();
    }

    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                .title("項目api文檔")
                .description("swagger接入教程")
                .version("1.0")
                .build();
    }
}

因為之前已經配置好了spring security,所以瀏覽器網(wǎng)址中輸入 http://localhost:8080/swagger-ui.html 后,會被攔截住,輸入之前配置好的用戶密碼后,效果如下所示;

SpringBoot學習(三)—— springboot快速整合swagger文檔

因為之前測試用戶登錄,用戶權限,所以controller里面已經有了一些接口方法,但是就讓它這樣默認,顯然用戶體驗不好,所以在之前的userController里繼續(xù)加上swagger的注解。

@Api:用在類上,說明該類的作用。

@ApiOperation:說明該方法的作用。

具體而更細致的注解參見官方文檔 常用注解說明 。

UserController.java

package com.example.controller;

import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@RequestMapping("user")
@Api(value = "用戶模塊說明", description = "提供用戶的增、刪、改、查")
public class UserController {

    @RequestMapping(value = "/addUser", method = RequestMethod.GET)
    @ResponseBody
    @ApiOperation(value = "添加用戶", notes = "放一些信息,供測試判斷")
    String addUser() {
        return "這是添加用戶!??!";
    }

    @RequestMapping(value = "/deleteUser", method = RequestMethod.POST)
    @ResponseBody
    @ApiOperation(value = "刪除用戶", notes = "放一些信息,供測試判斷")
    String deleteUser() {
        return "這是刪除用戶?。。?;
    }

    @RequestMapping("/updateUser")
    @ResponseBody
    @ApiOperation(value = "修改用戶", notes = "放一些信息,供測試判斷")
    String updateUser() {
        return "這是修改用戶!??!";
    }

    @RequestMapping(value = "/findAllUsers", method = RequestMethod.PUT)
    @ResponseBody
    @ApiOperation(value = "查詢用戶", notes = "放一些信息,供測試判斷")
    String findAllUsers() {
        return "這是查詢用戶?。。?;
    }

}

效果圖如下
SpringBoot學習(三)—— springboot快速整合swagger文檔
SpringBoot學習(三)—— springboot快速整合swagger文檔
具體打開某一條,如下

SpringBoot學習(三)—— springboot快速整合swagger文檔

很明顯,有了中文注釋,文檔可讀性更強。

要說明的是,平時寫 @RequestMapping 注解的時候,我通常會簡寫,如上demo中的修改用戶方法。但是swagger是侵入式的,如果未指定 RequestMethod 類型,就會把一大堆都列出來,如GET,HEAD,POST,PUT,DELETE,OPTIONS,PATCH ,而其他指定好的,則是一條。

當前題目:SpringBoot學習(三)——springboot快速整合swagger文檔
URL網(wǎng)址:http://jinyejixie.com/article6/pgecog.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供手機網(wǎng)站建設、網(wǎng)站設計、網(wǎng)站營銷、品牌網(wǎng)站設計、響應式網(wǎng)站、商城網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

h5響應式網(wǎng)站建設
安新县| 仁怀市| 台湾省| 财经| 九江市| 白河县| 西藏| 那曲县| 文水县| 海城市| 阿鲁科尔沁旗| 道真| 龙泉市| 杭锦后旗| 元朗区| 天等县| 大庆市| 仲巴县| 湘乡市| 屯门区| 南昌市| 金沙县| 乌兰察布市| 阳新县| 永嘉县| 五华县| 疏附县| 新绛县| 宜春市| 宁远县| 稻城县| 同德县| 景泰县| 汾西县| 乌恰县| 永德县| 和平县| 天长市| 榆社县| 平远县| 浦东新区|