java REST API 文檔自動(dòng)生成 —— springfox-swagger

springfox-swagger有什么用?

  • 自動(dòng)生成restAPI文檔
  • 文檔在線查看/在線調(diào)試
  • 隨著代碼自動(dòng)更新
  • 自動(dòng)生成客戶端代碼
  • 自動(dòng)生成server模擬代碼

openAPI-specification/swagger/springfox

openAPI-specification 是一套描述REST API的規(guī)范
swagger 是實(shí)現(xiàn)openAPI-specification的一套工具。是個(gè)具體實(shí)現(xiàn)
springfox 原名swagger-springmvc 是對swagger的java spring的集成。 目前也可以兼容swagger之外的規(guī)范,例如RAML和jsonapi。


swagger 1和 swagger 2的區(qū)別

swagger1 指的是 OpenAPI Spec用的是1.2版本
swagger2 指的是 OpenAPI Spec用的是2.0版本
springfox-swagger2 對應(yīng)的 swagger-core 版本是 1.5.3- 1.5.4
Swagger core Version Release Date OpenAPI Spec compatibility Notes Status
2.0.0 2018-03-20 3.0 tag v2.0.0 Supported
2.0.0-rc4 2018-01-22 3.0 tag v2.0.0-rc4 Supported
2.0.0-rc3 2017-11-21 3.0 tag v2.0.0-rc3 Supported
2.0.0-rc2 2017-09-29 3.0 tag v2.0.0-rc2 Supported
2.0.0-rc1 2017-08-17 3.0 tag v2.0.0-rc1 Supported
1.5.18 (current stable) 2018-01-22 2.0 tag v1.5.18 Supported
1.5.17 2017-11-21 2.0 tag v1.5.17 Supported
1.5.16 2017-07-15 2.0 tag v1.5.16 Supported
1.3.12 2014-12-23 1.2 tag v1.3.12 Supported
1.2.4 2013-06-19 1.1 tag swagger-project_2.10.0-1.2.4 Deprecated
1.0.0 2011-10-16 1.0 tag v1.0 Deprecated


springfox 架構(gòu)

???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
                                   +------------------+                                                                 
                                   |                  |        Contains the internal service and                        
                        ?          |  springfox-core  |        schema description models along with                     
                                   |                  |        their builders.                                          
                                   +---------+--------+                                                                 
                                             ^                                                                          
                                   +---------+--------+                                                                 
                                   |                  |        Contains the service provider interfaces that            
                                   |  springfox-spi   |        can be used to extend and enrich the service models.     
                                   |                  |        For e.g. swagger specific annotation processors.         
                                   +---+------+----+--+                                                                 
                                       ^      ^    ^                                                                    
                       +---------------+----+ | +--+------------------+                                                 
Schema inference       |                    | | |                     | spring web specific extensions that can build
extensions that help   |  springfox-schema  | | |springfox-spring-web | the service models based on RequestMapping   
build up the schema for|                    | | |                     | information. This is the heart library that  
the parameters, models +--------------------+ | +---------------------+ infers the service model.                    
and responses                                 |                                                                         
                                 +------------+-------------+                                                           
                                 |                          |   Common swagger specific extensions                      
                                 | springfox-swagger-common |   that are aware of the different                         
                                 |                          |   swagger annotations.                                    
                                 +-----+---------------+----+                                                           
                                       ^               ^                                                                
                         +-------------+----+     +----+--------------+                                                 
                         |                  |     |                   |  Configurations, and mapping layer              
                         |springfox-swagger1|     |springfox-swagger2 |  that know how to convert the                   
                         |                  |     |                   |  service models to swagger 1.2 and              
                         +------------------+     +-------------------+  swagger 2.0 specification documents.  A
                                                                         Also contains the controller for each
                                                                         of the specific formats.
    


springfox-swagger2

  1. 引入jar包

    <dependency>
        <groupId>io.springfox</groupId>
        <artifactId>springfox-swagger2</artifactId>
        <version>2.x.x</version>
    </dependency>
    <dependency>
        <groupId>io.springfox</groupId>
        <artifactId>springfox-swagger-ui</artifactId>
        <version>2.x.x</version>
    </dependency>
    
    
  2. 全局配置boot

    @SpringBootApplication
    @EnableSwagger2
    public class Application  {
        public static void main(String[] args) {
            SpringApplication.run(Application.class, args);
        }
        
        @Bean
        public Docket testApi() {
            ApiInfo apiInfo = new ApiInfoBuilder()
                    .title("API接口")
                    .description("api")
                    .build();
            return new Docket(DocumentationType.SWAGGER_2)
                    .groupName("default")
                    .genericModelSubstitutes(DeferredResult.class)
                    .useDefaultResponseMessages(false)
                    .forCodeGeneration(true)
                    .pathMapping("/")
                    .select()
                    .build()
                    .apiInfo(apiInfo);
        }
    }
    
    
  3. 全局配置非boot

    @Configuration
    @EnableWebMvc
    @EnableSwagger2
    public class Application  {
        public static void main(String[] args) {
            SpringApplication.run(Application.class, args);
        }
        
        @Bean
        public Docket testApi() {
            ApiInfo apiInfo = new ApiInfoBuilder()
                    .title("API接口")
                    .description("api")
                    .build();
            return new Docket(DocumentationType.SWAGGER_2)
                    .groupName("default")
                    .genericModelSubstitutes(DeferredResult.class)
                    .useDefaultResponseMessages(false)
                    .forCodeGeneration(true)
                    .pathMapping("/")
                    .select()
                    .build()
                    .apiInfo(apiInfo);
        }
    }
    
    
  4. 配置controller

    @Api(tags = {"測試組"})
    @RestController
    public class Controller {
    
        @ApiOperation(value = "方法1", notes = "方法1描述")
        @RequestMapping(value = "/CH070", method = {RequestMethod.POST}
            , produces = {"application/json","application/xml"})
        public Response method1(@ApiParam(required = true, value = "參數(shù)1")
             @RequestParam(value = "method11") String method2
            , @ApiParam(required = true, value = "method2") 
             @RequestParam(value = "method2", required = true) String method2) {
        }
    
    }
    
  5. 集成 spring-data-rest / bean-validators

    <dependency>
        <groupId>io.springfox</groupId>
        <artifactId>springfox-bean-validators</artifactId>
        <version>${springfox.version}</version>
    </dependency>
    <dependency>
        <groupId>io.springfox</groupId>
        <artifactId>springfox-data-rest</artifactId>
        <version>${springfox.version}</version>
     <dependency>
    
    @Import({SpringDataRestConfiguration.class, BeanValidatorPluginsConfiguration.class})
    


springfox-swagger-ui

swagger-ui 是一個(gè)node工程,通過swagger暴露的接口,展示文檔信息
springfox-swagger-ui 是一個(gè)webjar, 方便進(jìn)行maven集成
springfox-ui 目錄結(jié)構(gòu):
```
META-INF
    |- resources
        |- webjars
            |-swagger-ui.html
            |-springfox-swagger-ui
                |-css
                |-fonts
                |-images
                |-lang
                |-lib
                |-o2c.html
                |-springfox.js
                |-swagger-ui.min.js
```
什么是webjar?
  • 第三方小工具, 把靜態(tài)資源進(jìn)行打包,幷版本化管理。

  • spring-boot 默認(rèn)支持。

    //WebMvcAutoConfiguration#addResourceHandlers
    if (!registry.hasMappingForPattern("/webjars/**")) {
        customizeResourceHandlerRegistration(
                registry.addResourceHandler("/webjars/**")
                        .addResourceLocations(
                                "classpath:/META-INF/resources/webjars/")
                .setCachePeriod(cachePeriod));
    }
    
  • 非spring-boot

    <mvc:resources mapping="/swagger-ui.html" location="classpath:/META-INF/resources/"/>
    <mvc:resources mapping="/webjars/**" location="classpath:/META-INF/resources/webjars/"/>
    
其他風(fēng)格的替代品:

swagger-codegen

swagger-codegen這個(gè)是總?cè)肟?。不過文檔比較亂,不太好找,下面列出幾個(gè)關(guān)鍵點(diǎn)
從哪里獲得輸入的配置文件?
  • springfox-swagger-ui 默認(rèn)輸出地址為/v2/api-docs?group=default。
    group可以自定義,default group可以不傳。 通過瀏覽器地址欄請求可能無法接受json格式的返回報(bào)文,這時(shí)可以通過更改spring-boot配置項(xiàng)springfox.documentation.swagger.v2.path 添加后綴解決,例如:/v2/api-docs.json

    #springfox.documentation.swagger2.web.Swagger2Controller
    public static final String DEFAULT_URL = "/v2/api-docs";
        
    @RequestMapping(
        value = DEFAULT_URL,
        method = RequestMethod.GET,
        produces = { APPLICATION_JSON_VALUE, HAL_MEDIA_TYPE })
    @PropertySourcedMapping(
        value = "${springfox.documentation.swagger.v2.path}",
        propertyKey = "springfox.documentation.swagger.v2.path")
    @ResponseBody
    public ResponseEntity<Json> getDocumentation(
         @RequestParam(value = "group", required = false) String swaggerGroup,
        HttpServletRequest servletRequest) {
    
  • 在線生成 https://generator.swagger.io/ 貌似需要把配置文件暴露到外網(wǎng)

  • swagger-codegen-maven-plugin maven 自動(dòng)化集成

  • 具體有哪些配置項(xiàng) 源碼 文檔沒怎么說,源碼里有列表。。

  • 模擬Server Server stub generator HOWTO 包括spring-boot和Spring MVC

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容