14 changed files with 108 additions and 34 deletions
@ -0,0 +1,43 @@ |
|||||
|
package com.yxt.wms.config; |
||||
|
|
||||
|
import io.swagger.annotations.Api; |
||||
|
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 wangpengfei |
||||
|
* @date 2024/7/1 15:48 |
||||
|
*/ |
||||
|
|
||||
|
@Configuration |
||||
|
@EnableSwagger2 |
||||
|
public class Swagger2Configuration { |
||||
|
@Bean |
||||
|
public Docket createRestApi(){ |
||||
|
return new Docket(DocumentationType.SWAGGER_2) |
||||
|
.apiInfo(apiInfo()) |
||||
|
.select() |
||||
|
// .apis(RequestHandlerSelectors.withClassAnnotation(Api.class))
|
||||
|
.apis(RequestHandlerSelectors.basePackage("com.yxt.wms.apiadmin.aggregation")) |
||||
|
.paths(PathSelectors.any()) |
||||
|
.build(); |
||||
|
} |
||||
|
|
||||
|
//基本信息的配置,信息会在api文档上显示
|
||||
|
private ApiInfo apiInfo(){ |
||||
|
return new ApiInfoBuilder() |
||||
|
.title("zg测试的接口文档") |
||||
|
.description("xx相关接口的文档") |
||||
|
.termsOfServiceUrl("http://localhost:8080/hello") |
||||
|
.version("1.0") |
||||
|
.build(); |
||||
|
} |
||||
|
|
||||
|
} |
Loading…
Reference in new issue