基於SpringCloud的Microservices架構實戰案例-在線API管理

simplemall項目前幾篇回顧:
html

源碼地址:https://github.com/backkoms/simplemallgithub

前端和後端的惟一聯繫,變成了API接口;API文檔變成了先後端開發人員聯繫的紐帶,變得愈來愈重要,swagger就是一款讓你更好的書寫API文檔的框架。 本實戰案例中也引入swagger2做爲API管理工具,下面羅列下swagger2+SpringBoot使用步驟。web

SpringBoot集成Swagger2

第一步,pom配置spring

 
  
  1. <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->apache

  2. <dependency>後端

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

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

  5.    <version>2.6.1</version>

  6. </dependency>

  7. <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui -->

  8. <dependency>

  9.    <groupId>io.springfox</groupId>

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

  11.    <version>2.6.1</version>

  12. </dependency>

第二步編寫配置管理類Swagger2Config

 
  
  1. package com.simplemall.micro.serv.page;

  2. import org.springframework.context.annotation.Bean;

  3. import org.springframework.context.annotation.Configuration;

  4. import io.swagger.annotations.ApiOperation;

  5. import springfox.documentation.builders.ApiInfoBuilder;

  6. import springfox.documentation.builders.PathSelectors;

  7. import springfox.documentation.builders.RequestHandlerSelectors;

  8. import springfox.documentation.service.ApiInfo;

  9. import springfox.documentation.spi.DocumentationType;

  10. import springfox.documentation.spring.web.plugins.Docket;

  11. import springfox.documentation.swagger2.annotations.EnableSwagger2;

  12. /**

  13. * swagger2 configuration

  14. *

  15. * @author guooo

  16. *

  17. */

  18. @Configuration//SpringBoot啓動時自動裝載

  19. @EnableSwagger2 //打開swagger2功能,缺失的話一樣沒法打開ui頁面

  20. public class Swagger2Config {

  21.    @Bean

  22.    public Docket createRestApi() {

  23.        return new Docket(DocumentationType.SWAGGER_2).apiInfo(apiInfo()).select()

  24.                .apis(RequestHandlerSelectors.basePackage("com.simplemall.micro.serv.page.api"))

  25.                .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))

  26.                .paths(PathSelectors.any())

  27.                .build();

  28.    }

  29.    private ApiInfo apiInfo() {

  30.        return new ApiInfoBuilder().title("Front app Swagger apis").description("For micro-service 's app to use")

  31.                .version("V1.0").build();

  32.    }

  33. }

通過以上兩步簡單的配置後,能夠直接進行接口代碼的編寫。

 
  
  1. @Api(value = "用戶服務", tags = "用戶服務接口")

  2. @RestController

  3. @RefreshScope // 使用該註解的類,會在接到SpringCloud配置中心配置刷新的時候,自動將新的配置更新到該類對應的字段中。須要從新觸發加載動做可使用POST方式請求/refresh接口,該接口位於spring-boot-starter-actuator依賴,調用前需添加不然404。

  4. public class APIAccountController {

  5.    @ApiOperation(value = "用戶登錄")

  6.    @RequestMapping(value = "acc/login", method = { RequestMethod.POST })

  7.    public RestAPIResult<String> login(@ApiParam(value = "手機號") @RequestParam(required = true) String phone,

  8.            @ApiParam(value = "密碼") @RequestParam(required = true) String password, HttpSession session) {

  9.        RestAPIResult<String> restAPIResult = new RestAPIResult<>();

  10.        Account account = accountFeignClient.login(phone, password);

  11.    }

使用swagger進行API管理的話,對代碼有必定的侵入性,這個須要考慮在內。以前也提到過幾種在線API的管理方式,點擊連接《介紹幾款經常使用的在線API管理工具

使用SpringBoot技術,再以maven原始的方式引入swagger使用的話,遠不如一個starter來的爽,這裏介紹一個swagger-starter,能夠更快捷的與spring boot集成使用。

swagger-spring-boot-starter應用

在pom.xml中引入依賴:【當前最新版本 1.7.0.RELEASE】

 
  
  1. <dependency>

  2.    <groupId>com.spring4all</groupId>

  3.    <artifactId>swagger-spring-boot-starter</artifactId>

  4.    <version>1.7.0.RELEASE</version>

  5. </dependency>

注意:從1.6.0開始,咱們按Spring Boot官方建議修改了artifactId爲swagger-spring-boot-starter,1.6.0以前的版本不作修改,依然爲使用spring-boot-starter-swagger !

在應用主類中增長@EnableSwagger2Doc註解

 
  
  1. @EnableSwagger2Doc

  2. @SpringBootApplication

  3. public class Bootstrap {

  4.    public static void main(String[] args) {

  5.        SpringApplication.run(Bootstrap.class, args);

  6.    }

  7. }

默認狀況下就能產生全部當前Spring MVC加載的請求映射文檔。

參數配置,配置示例

 
  
  1. swagger.enabled=true

  2. swagger.title=spring-boot-starter-swagger

  3. swagger.description=Starter for swagger 2.x

  4. swagger.version=1.4.0.RELEASE

  5. swagger.license=Apache License, Version 2.0

  6. swagger.licenseUrl=https://www.apache.org/licenses/LICENSE-2.0.html

  7. swagger.termsOfServiceUrl=https://github.com/dyc87112/spring-boot-starter-swagger

  8. swagger.contact.name=didi

  9. swagger.contact.url=http://blog.didispace.com

  10. swagger.contact.email=dyc87112@qq.com

  11. swagger.base-package=com.didispace

  12. swagger.base-path=/**

  13. swagger.exclude-path=/error, /ops/**

  14. swagger.globalOperationParameters[0].name=name one

  15. swagger.globalOperationParameters[0].description=some description one

  16. swagger.globalOperationParameters[0].modelRef=string

  17. swagger.globalOperationParameters[0].parameterType=header

  18. swagger.globalOperationParameters[0].required=true

  19. swagger.globalOperationParameters[1].name=name two

  20. swagger.globalOperationParameters[1].description=some description two

  21. swagger.globalOperationParameters[1].modelRef=string

  22. swagger.globalOperationParameters[1].parameterType=body

  23. swagger.globalOperationParameters[1].required=false

  24. // 取消使用默認預約義的響應消息,並使用自定義響應消息

  25. swagger.apply-default-response-messages=false

  26. swagger.global-response-message.get[0].code=401

  27. swagger.global-response-message.get[0].message=401get

  28. swagger.global-response-message.get[1].code=500

  29. swagger.global-response-message.get[1].message=500get

  30. swagger.global-response-message.get[1].modelRef=ERROR

  31. swagger.global-response-message.post[0].code=500

  32. swagger.global-response-message.post[0].message=500post

  33. swagger.global-response-message.post[0].modelRef=ERROR

詳細介紹可參考源碼,地址:https://github.com/SpringForAll/spring-boot-starter-swagger。因爲JDK代碼編譯版本的限制,JDK1.7是不支持的,可以使用1.8


擴展閱讀:


相關文章
相關標籤/搜索