第一步 在POM文件中添加swaggerUI賴
<!-- Swagger -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.6.1</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.6.1</version>
</dependency>
複製代碼
第二步 swagger配置文件
package com.springboot.shop.config;
/**
* @Description
* @auther 01376480
* @Create 2019-02-24-16:51
*/
import static com.google.common.base.Predicates.or;
import static springfox.documentation.builders.PathSelectors.regex;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.context.request.async.DeferredResult;
import springfox.documentation.builders.ApiInfoBuilder;
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;
/**
* SwaggerConfig
*/
@Configuration
@EnableSwagger2
public class SwaggerConfig {
/**
* SpringBoot默認已經將classpath:/META-INF/resources/和classpath:/META-INF/resources/webjars/映射
* 因此該方法不須要重寫,若是在SpringMVC中,可能須要重寫定義(我沒有嘗試)
* 重寫該方法須要 extends WebMvcConfigurerAdapter
*
*/
// @Override
// public void addResourceHandlers(ResourceHandlerRegistry registry) {
// registry.addResourceHandler("swagger-ui.html")
// .addResourceLocations("classpath:/META-INF/resources/");
//
// registry.addResourceHandler("/webjars/**")
// .addResourceLocations("classpath:/META-INF/resources/webjars/");
// }
/**
* 能夠定義多個組,好比本類中定義把test和demo區分開了
* (訪問頁面就能夠看到效果了)
*
*/
@Bean
public Docket testApi() {
return new Docket(DocumentationType.SWAGGER_2)
.groupName("test")
.genericModelSubstitutes(DeferredResult.class)
// .genericModelSubstitutes(ResponseEntity.class)
.useDefaultResponseMessages(false)
.forCodeGeneration(true)
.pathMapping("/")// base,最終調用接口後會和paths拼接在一塊兒
.select()
// .paths(or(regex("/api/.*")))//過濾的接口
.build()
.apiInfo(testApiInfo());
}
@Bean
public Docket demoApi() {
return new Docket(DocumentationType.SWAGGER_2)
.groupName("demo")
.genericModelSubstitutes(DeferredResult.class)
// .genericModelSubstitutes(ResponseEntity.class)
.useDefaultResponseMessages(false)
.forCodeGeneration(false)
.pathMapping("/")
.select()
// .paths(or(regex("/demo/.*")))//過濾的接口
.build()
.apiInfo(demoApiInfo());
}
private ApiInfo testApiInfo() {
return new ApiInfoBuilder()
.title("Electronic Health Record(EHR) Platform API")//大標題
.description("EHR Platform's REST API, all the applications could access the Object model data via JSON.")//詳細描述
.version("1.0")//版本
.termsOfServiceUrl("NO terms of service")
.contact(new Contact("小單", "http://blog.csdn.net/catoop", "365384722@qq.com"))//做者
.license("The Apache License, Version 2.0")
.licenseUrl("http://www.apache.org/licenses/LICENSE-2.0.html")
.build();
}
private ApiInfo demoApiInfo() {
return new ApiInfoBuilder()
.title("Electronic Health Record(EHR) Platform API")//大標題
.description("EHR Platform's REST API, all the applications could access the Object model data via JSON.")//詳細描述
.version("1.0")//版本
.termsOfServiceUrl("NO terms of service")
.contact(new Contact("小單", "http://blog.csdn.net/catoop", "365384722@qq.com"))//做者
.license("The Apache License, Version 2.0")
.licenseUrl("http://www.apache.org/licenses/LICENSE-2.0.html")
.build();
}
}
複製代碼