java REST API 文檔自動生成 —— springfox-swagger

springfox-swagger有什么用?

  • 自動生成restAPI文檔
  • 文檔在線查看/在線調試
  • 隨著代碼自動更新
  • 自動生成客戶端代碼
  • 自動生成server模擬代碼

openAPI-specification/swagger/springfox

openAPI-specification 是一套描述REST API的規(guī)范
swagger 是實現(xiàn)openAPI-specification的一套工具瑞凑。是個具體實現(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 對應的 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 架構

???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
                                   +------------------+                                                                 
                                   |                  |        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 是一個node工程窍株,通過swagger暴露的接口,展示文檔信息
springfox-swagger-ui 是一個webjar, 方便進行maven集成
springfox-ui 目錄結構:
```
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)資源進行打包踊谋,幷版本化管理。

  • spring-boot 默認支持旋讹。

    //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/"/>
    
其他風格的替代品:

swagger-codegen

swagger-codegen這個是總入口殖蚕。不過文檔比較亂,不太好找沉迹,下面列出幾個關鍵點
從哪里獲得輸入的配置文件睦疫?
  • springfox-swagger-ui 默認輸出地址為/v2/api-docs?group=default。
    group可以自定義鞭呕,default group可以不傳蛤育。 通過瀏覽器地址欄請求可能無法接受json格式的返回報文,這時可以通過更改spring-boot配置項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 自動化集成

  • 具體有哪些配置項 源碼 文檔沒怎么說瓦糕,源碼里有列表。腋么。

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

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末咕娄,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子珊擂,更是在濱河造成了極大的恐慌谭胚,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件未玻,死亡現(xiàn)場離奇詭異灾而,居然都是意外死亡,警方通過查閱死者的電腦和手機扳剿,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進店門旁趟,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事锡搜〕壤В” “怎么了?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵耕餐,是天一觀的道長凡傅。 經(jīng)常有香客問我,道長肠缔,這世上最難降的妖魔是什么夏跷? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮明未,結果婚禮上槽华,老公的妹妹穿的比我還像新娘。我一直安慰自己趟妥,他們只是感情好猫态,可當我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著披摄,像睡著了一般亲雪。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上疚膊,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天义辕,我揣著相機與錄音,去河邊找鬼酿联。 笑死,一個胖子當著我的面吹牛夺巩,可吹牛的內容都是我干的贞让。 我是一名探鬼主播,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼柳譬,長吁一口氣:“原來是場噩夢啊……” “哼喳张!你這毒婦竟也來了?” 一聲冷哼從身側響起美澳,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤销部,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后制跟,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體舅桩,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年雨膨,在試婚紗的時候發(fā)現(xiàn)自己被綠了擂涛。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡聊记,死狀恐怖撒妈,靈堂內的尸體忽然破棺而出恢暖,到底是詐尸還是另有隱情,我是刑警寧澤狰右,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布杰捂,位于F島的核電站,受9級特大地震影響棋蚌,放射性物質發(fā)生泄漏嫁佳。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一附鸽、第九天 我趴在偏房一處隱蔽的房頂上張望脱拼。 院中可真熱鬧,春花似錦坷备、人聲如沸熄浓。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽赌蔑。三九已至,卻和暖如春竟秫,著一層夾襖步出監(jiān)牢的瞬間娃惯,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工肥败, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留趾浅,地道東北人。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓馒稍,卻偏偏與公主長得像皿哨,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子纽谒,可洞房花燭夜當晚...
    茶點故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內容