日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

整合Swagger2文档api

發布時間:2024/4/13 编程问答 21 豆豆
生活随笔 收集整理的這篇文章主要介紹了 整合Swagger2文档api 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
<!-- swagger2 配置 --> <dependency><groupId>io.springfox</groupId><artifactId>springfox-swagger2</artifactId><version>2.4.0</version> </dependency> <dependency><groupId>io.springfox</groupId><artifactId>springfox-swagger-ui</artifactId><version>2.4.0</version> </dependency> <dependency><groupId>com.github.xiaoymin</groupId><artifactId>swagger-bootstrap-ui</artifactId><version>1.6</version> </dependency> package com.leon.config;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.service.Contact; import springfox.documentation.spi.DocumentationType; import springfox.documentation.spring.web.plugins.Docket; import springfox.documentation.swagger2.annotations.EnableSwagger2;@Configuration @EnableSwagger2 public class Swagger2 {// http://localhost:8088/swagger-ui.html 原路徑 // http://localhost:8088/doc.html 原路徑// 配置swagger2核心配置 docket@Beanpublic Docket createRestApi() {return new Docket(DocumentationType.SWAGGER_2) // 指定api類型為swagger2.apiInfo(apiInfo()) // 用于定義api文檔匯總信息.select().apis(RequestHandlerSelectors.basePackage("com.leon.controller")) // 指定controller包.paths(PathSelectors.any()) // 所有controller.build();}private ApiInfo apiInfo() {return new ApiInfoBuilder().title("天天吃貨 電商平臺接口api") // 文檔頁標題.contact(new Contact("leon","https://www.leon.com","abc@leon.com")) // 聯系人信息.description("專為天天吃貨提供的api文檔") // 詳細信息.version("1.0.1") // 文檔版本號.termsOfServiceUrl("https://www.leon.com") // 網站地址.build();}}

?

總結

以上是生活随笔為你收集整理的整合Swagger2文档api的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。