整合Swagger2文档api
生活随笔
收集整理的這篇文章主要介紹了
整合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的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 自定义响应数据结构
- 下一篇: 用户退出登录清空cookie