39 lines
1.2 KiB
Java
39 lines
1.2 KiB
Java
|
|
package com.saye.hospitalgd.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.spi.DocumentationType;
|
|||
|
|
import springfox.documentation.spring.web.plugins.Docket;
|
|||
|
|
import springfox.documentation.swagger2.annotations.EnableSwagger2;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @author thuang
|
|||
|
|
* @version 1.0
|
|||
|
|
* @description: Swagger配置,用来生成接口查看页面
|
|||
|
|
* @date 2021/10/13 8:41
|
|||
|
|
*/
|
|||
|
|
@Configuration
|
|||
|
|
@EnableSwagger2
|
|||
|
|
public class SwaggerConfig {
|
|||
|
|
|
|||
|
|
@Bean
|
|||
|
|
public Docket createRestApi() {
|
|||
|
|
return new Docket(DocumentationType.SWAGGER_2).apiInfo(apiInfo())
|
|||
|
|
.select()
|
|||
|
|
.apis(RequestHandlerSelectors.any())
|
|||
|
|
.paths(PathSelectors.any()).build();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private ApiInfo apiInfo() {
|
|||
|
|
return new ApiInfoBuilder()
|
|||
|
|
.title("对账平台接口文档")
|
|||
|
|
.description("对账系统前后端接口说明")
|
|||
|
|
.version("1.0")
|
|||
|
|
.build();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|