You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.1 KiB
Java
30 lines
1.1 KiB
Java
3 years ago
|
package com.glxp.udidl.admin.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.spi.DocumentationType;
|
||
|
import springfox.documentation.spring.web.plugins.Docket;
|
||
|
|
||
|
@Configuration
|
||
|
public class SwaggerConfig {
|
||
|
|
||
|
@Bean(value = "defaultApi2")
|
||
|
public Docket defaultApi2() {
|
||
|
return new Docket(DocumentationType.SWAGGER_2)
|
||
|
.apiInfo(new ApiInfoBuilder()
|
||
|
.title("第三方服务")
|
||
|
.description("接口文档")
|
||
|
.version("1.0")
|
||
|
.build())
|
||
|
.select()
|
||
|
//这里指定Controller扫描包路径
|
||
|
.apis(RequestHandlerSelectors.basePackage("com.glxp.udidl.admin.controller"))
|
||
|
.paths(PathSelectors.any())
|
||
|
.build();
|
||
|
}
|
||
|
|
||
|
}
|