swagger使用指南

 

 

做者:Yrion

 

前言:做爲一個之前後端分離爲模式開發小組,咱們每隔一段時間都進行這樣一個場景:前端人員和後端開發在一塊兒熱烈的討論"哎,你這參數又變了啊","接口怎麼又請求不通了啊","你再試試,我打個斷點調試一下.."。能夠看到在先後端溝通中出現了很多問題。php

對於這樣的問題,以前一直沒有很好的解決方案,直到它的出現,沒錯...這就是咱們今天要討論的神器:swagger,一款致力於解決接口規範化、標準化、文檔化的開源庫,一款真正的開發神器。html

目錄

  • swagger是什麼?前端

  • 爲何要使用swaager?java

  • 如何搭一個swagger?web

  • 如何在項目中集成swaggerspring

  • 使用swagger須要注意的問題編程

  • 總結後端

一:swagger是什麼?

Swagger是一款RESTFUL接口的文檔在線自動生成+功能測試功能軟件。Swagger是一個規範和完整的框架,用於生成、描述、調用和可視化RESTful風格的Web服務。目標是使客戶端和文件系統做爲服務器以一樣的速度來更新文件的方法,參數和模型緊密集成到服務器。api

這個解釋簡單點來說就是說,swagger是一款能夠根據resutful風格生成的生成的接口開發文檔,而且支持作測試的一款中間軟件。服務器

二:爲何要使用swaager?

2.1:對於後端開發人員來講

  • 不用再手寫WiKi接口拼大量的參數,避免手寫錯誤

  • 對代碼侵入性低,採用全註解的方式,開發簡單

  • 方法參數名修改、增長、減小參數均可以直接生效,不用手動維護

  • 缺點:增長了開發成本,寫接口還得再寫一套參數配置

2.2:對於前端開發來講

  • 後端只須要定義好接口,會自動生成文檔,接口功能、參數一目瞭然

  • 聯調方便,若是出問題,直接測試接口,實時檢查參數和返回值,就能夠快速定位是前端仍是後端的問題

2.3:對於測試

  • 對於某些沒有前端界面UI的功能,能夠用它來測試接口

  • 操做簡單,不用瞭解具體代碼就能夠操做

  • 操做簡單,不用瞭解具體代碼就能夠操做

三:如何搭一個swagger

3.1:引入swagger的依賴

目前推薦使用2.7.0版本,由於2.6.0版本有bug,而其餘版本又沒有通過驗證

  1. <!--引入swagger-->

  2. <dependency>

  3.    <groupId>io.springfox</groupId>

  4.    <artifactId>springfox-swagger2</artifactId>

  5.    <version>2.7.0</version>

  6. </dependency>

  7. <dependency>

  8.    <groupId>io.springfox</groupId>

  9.    <artifactId>springfox-swagger-ui</artifactId>

  10.    <version>2.7.0</version>

  11. </dependency>

3.2:springBoot整合swagger

  1. @Configuration

  2. @EnableSwagger2

  3. public class SwaggerConfig {

  4.    @Bean

  5.    public Docket productApi() {

  6.        return new Docket(DocumentationType.SWAGGER_2)

  7.                .apiInfo(apiInfo())

  8.                .select()

  9.                .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))  //添加ApiOperiation註解的被掃描

  10.                .paths(PathSelectors.any())

  11.                .build();

  12.  

  13.    }

  14.  

  15.    private ApiInfo apiInfo() {

  16.        return new ApiInfoBuilder().title(」swaggerspringBoot整合「).description(」swaggerAPI文檔")

  17.                .version("1.0").build();

  18.    }

  19.  

  20. }

3.3:swagger的註解

swagger的核心在於註解,接下來就着重講一下swagger的註解:

watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3poZW5naGVpdGk=

四:在項目中集成swagger

4.1:在controller中使用註解

  1. package com.youjia.swagger.controller;

  2.  

  3. import com.youjia.swagger.constants.CommonConstants;

  4. import com.youjia.swagger.model.Film;

  5. import com.youjia.swagger.model.ResultModel;

  6. import com.youjia.swagger.service.FilmService;

  7. import io.swagger.annotations.Api;

  8. import io.swagger.annotations.ApiImplicitParam;

  9. import io.swagger.annotations.ApiImplicitParams;

  10. import io.swagger.annotations.ApiOperation;

  11. import io.swagger.annotations.ApiParam;

  12. import io.swagger.annotations.ApiResponse;

  13. import io.swagger.annotations.ApiResponses;

  14. import org.springframework.beans.factory.annotation.Autowired;

  15. import org.springframework.util.CollectionUtils;

  16. import org.springframework.util.StringUtils;

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

  18. import org.springframework.web.bind.annotation.PathVariable;

  19. import org.springframework.web.bind.annotation.PostMapping;

  20. import org.springframework.web.bind.annotation.RequestBody;

  21. import org.springframework.web.bind.annotation.RequestMapping;

  22. import org.springframework.web.bind.annotation.RequestParam;

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

  24.  

  25. import javax.servlet.http.HttpServletRequest;

  26. import java.text.DateFormat;

  27. import java.text.SimpleDateFormat;

  28. import java.util.Date;

  29. import java.util.List;

  30. import java.util.Objects;

  31.  

  32. /**

  33. * @Auther: wyq

  34. * @Date: 2018/12/29 14:50

  35. */

  36. @RestController

  37. @Api(value = "電影Controller", tags = { "電影訪問接口" })

  38. @RequestMapping("/film")

  39. public class FilmController {

  40.  

  41.    @Autowired

  42.    private FilmService filmService;

  43.  

  44.    /**

  45.     * 添加一個電影數據

  46.     *

  47.     * @param

  48.     * @return

  49.     */

  50.    @ApiOperation(value = "添加一部電影")

  51.    @PostMapping("/addFilm")

  52.    @ApiResponses(value = { @ApiResponse(code = 1000, message = "成功"), @ApiResponse(code = 1001, message = "失敗"),

  53.            @ApiResponse(code = 1002, response = Film.class,message = "缺乏參數") })

  54.    public ResultModel addFilm(@ApiParam("電影名稱") @RequestParam("filmName") String filmName,

  55.                               @ApiParam(value = "分數", allowEmptyValue = true) @RequestParam("score") Short score,

  56.                               @ApiParam("發佈時間") @RequestParam(value = "publishTime",required = false) String publishTime,

  57.                               @ApiParam("建立者id") @RequestParam("creatorId") Long creatorId) {

  58.  

  59.        if (Objects.isNull(filmName) || Objects.isNull(score) || Objects.isNull(publishTime) || StringUtils

  60.                .isEmpty(creatorId)) {

  61.            return new ResultModel(ResultModel.failed, "參數錯誤");

  62.        }

  63.        Film filmPOM = new Film();

  64.        filmPOM.setFilmName(filmName);

  65.        filmPOM.setScore(score);

  66.        DateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");

  67.        Date publishTimeDate = null;

  68.        try {

  69.            publishTimeDate = simpleDateFormat.parse(publishTime);

  70.        } catch (Exception ex) {

  71.            ex.printStackTrace();

  72.        }

  73.        filmPOM.setPublishTime(publishTimeDate);

  74.        filmPOM.setCreatorId(creatorId);

  75.        Boolean result = filmService.addFilm(filmPOM);

  76.        if (result) {

  77.            return new ResultModel(CommonConstants.SUCCESSMSG);

  78.        }

  79.        return new ResultModel(CommonConstants.FAILD_MSG);

  80.    }

  81.  

  82.    /**

  83.     * 根據電影名字獲取電影

  84.     *

  85.     * @param fileName

  86.     * @return

  87.     */

  88.    @GetMapping("/getFilms")

  89.    @ApiOperation(value = "根據名字獲取電影")

  90.    @ApiResponses(value = { @ApiResponse(code = 1000, message = "成功"), @ApiResponse(code = 1001, message = "失敗"),

  91.            @ApiResponse(code = 1002, message = "缺乏參數") })

  92.    public ResultModel getFilmsByName(@ApiParam("電影名稱") @RequestParam("fileName") String fileName) {

  93.        if (StringUtils.isEmpty(fileName)) {

  94.            return CommonConstants.getErrorResultModel();

  95.        }

  96.  

  97.        List<Film> films = filmService.getFilmByName(fileName);

  98.        if (!CollectionUtils.isEmpty(films)) {

  99.            return new ResultModel(films);

  100.        }

  101.        return CommonConstants.getErrorResultModel();

  102.  

  103.    }

  104.  

  105.    /**

  106.     * 根據電影名更新

  107.     *

  108.     * @return

  109.     */

  110.    @PostMapping("/updateScore")

  111.    @ApiOperation(value = "根據電影名修改分數")

  112.    @ApiResponses(value = { @ApiResponse(code = 1000, message = "成功"), @ApiResponse(code = 1001, message = "失敗"),

  113.            @ApiResponse(code = 1002, message = "缺乏參數") })

  114.    public ResultModel updateFilmScore(@ApiParam("電影名稱") @RequestParam("fileName") String fileName,

  115.                                       @ApiParam("分數") @RequestParam("score") Short score) {

  116.        if (StringUtils.isEmpty(fileName) || Objects.isNull(score)) {

  117.            return CommonConstants.getErrorResultModel();

  118.        }

  119.  

  120.        filmService.updateScoreByName(fileName, score);

  121.        return CommonConstants.getSucce***esultModel();

  122.    }

  123.  

  124.    /**

  125.     * 根據電影名刪除電影

  126.     *

  127.     * @param request

  128.     * @return

  129.     */

  130.    @PostMapping("/delFilm")

  131.    @ApiOperation(value = "根據電影名刪除電影")

  132.    @ApiImplicitParams({ @ApiImplicitParam(name = "filmName",

  133.            value = "電影名",

  134.            dataType = "String",

  135.            paramType = "query",

  136.            required = true), @ApiImplicitParam(name = "id", value = "電影id", dataType = "int", paramType = "query") })

  137.    public ResultModel deleteFilmByNameOrId(HttpServletRequest request) {

  138.        //電影名

  139.        String filmName = request.getParameter("filmName");

  140.        //電影id

  141.        Long filmId = Long.parseLong(request.getParameter("id"));

  142.  

  143.        filmService.deleteFilmOrId(filmName,filmId);

  144.  

  145.  

  146.        return CommonConstants.getSucce***esultModel();

  147.    }

  148.  

  149.    /**

  150.     * 根據id獲取電影

  151.     *

  152.     * @param id

  153.     * @return

  154.     */

  155.    @PostMapping("/{id}")

  156.    @ApiOperation("根據id獲取電影")

  157.    @ApiImplicitParam(name = "id", value = "電影id", dataType = "long", paramType = "path", required = true)

  158.    public ResultModel getFilmById(@PathVariable Long id) {

  159.  

  160.        if (Objects.isNull(id)) {

  161.            return CommonConstants.getLessParamResultModel();

  162.        }

  163.        Film film = filmService.getFilmById(id);

  164.        if (Objects.nonNull(film)) {

  165.            return new ResultModel(film);

  166.        }

  167.        return CommonConstants.getErrorResultModel();

  168.    }

  169.  

  170.    /**

  171.     * 修改整個電影

  172.     *

  173.     * @param film

  174.     * @return

  175.     */

  176.    @PostMapping("/insertFilm")

  177.    @ApiOperation("插入一部電影")

  178.    public ResultModel insertFilm(@ApiParam("電影實體對象") @RequestBody Film film) {

  179.        if (Objects.isNull(film)) {

  180.            return CommonConstants.getLessParamResultModel();

  181.        }

  182.        Boolean isSuccess = filmService.insertFilm(film);

  183.        if (isSuccess) {

  184.            return CommonConstants.getSucce***esultModel();

  185.        }

  186.        return CommonConstants.getErrorResultModel();

  187.    }

  188. }

4.2:訪問本地連接

http://localhost:8080/swagger-ui.html#/

watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3poZW5naGVpdGk=

能夠看出訪問的url都很清晰的展現在它最終的頁面上,咱們打開一個方法:能夠看出方法的請求參數清晰的的羅列出來,包括方法的返回值。而且有一個很重要的功能,只須要點下方的try it out就能夠進行接口測試,

watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3poZW5naGVpdGk=

五:使用swagger須要注意的問題

  • 對於只有一個HttpServletRequest參數的方法,若是參數小於5個,推薦使用 @ApiImplicitParams的方式單獨封裝每個參數;若是參數大於5個,採用定義一個對象去封裝全部參數的屬性,而後使用@APiParam的方式

  • 默認的訪問地址:ip:port/swagger-ui.html#/,可是在shiro中,會攔截全部的請求,必須加上默認訪問路徑(好比項目中,就是ip:port/context/swagger-ui.html#/),而後登錄後才能夠看到

  • 在GET請求中,參數在Body體裏面,不能使用@RequestBody。在POST請求,可使用@RequestBody和@RequestParam,若是使用@RequestBody,對於參數轉化的配置必須統一

  • controller必須指定請求類型,不然swagger會把全部的類型(6種)都生成出來

  • swagger在生產環境不能對外暴露,可使用@Profile({「dev」, 「prod」,「pre」})指定可使用的環境

六:總結

swagger做爲一款輔助性的工具,能大大提高咱們的和前端的溝通效率,接口是一個很是重要的傳遞數據的媒介,每一個接口的簽名、方法參數都很是重要。一個良好的文檔很是重要,若是採用手寫的方式很是容易拼寫錯誤,而swagger能夠自動化生成參數文檔,這一切都加快了咱們的溝通效率。而且能夠替代postman的做用。實在是開發編程必備良品啊。

相關文章
相關標籤/搜索