parent
447c8d559f
commit
d09b6a12f5
@ -0,0 +1,44 @@
|
||||
package com.yeqifu.sys.config;
|
||||
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import springfox.documentation.builders.ApiInfoBuilder;
|
||||
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;
|
||||
|
||||
/**
|
||||
* @Author: 落亦-
|
||||
* @Date: 2020/3/8 17:30
|
||||
*/
|
||||
@Configuration
|
||||
@EnableSwagger2 //启用Swagger2
|
||||
public class Swagger2AutoConfiguration {
|
||||
|
||||
/**
|
||||
* 在IOC容器里面创建可以扫描Controller里面的是否有Swagger相关的注解
|
||||
* @return
|
||||
*/
|
||||
@Bean
|
||||
public Docket swaggerSpringMvcPlugin(){
|
||||
return new Docket(DocumentationType.SWAGGER_2).apiInfo(apiInfo()).select()
|
||||
.apis(RequestHandlerSelectors.withClassAnnotation(RestController.class)).build();
|
||||
}
|
||||
|
||||
private ApiInfo apiInfo(){
|
||||
return new ApiInfoBuilder().description("仓库后台管理系统SwaggerUI接口工具")
|
||||
//名片
|
||||
.contact(new Contact("luoyi-","http://39.97.277.129","1784525940@qq.com"))
|
||||
//版本
|
||||
.version("1.0")
|
||||
//所有者
|
||||
.license("luoyi-工作室")
|
||||
//构造
|
||||
.build();
|
||||
}
|
||||
|
||||
}
|
@ -1 +1,2 @@
|
||||
filepath=G:/upload/
|
||||
filepath=G:/upload/
|
||||
#filepath=/root/project/G:/upload/
|
Loading…
Reference in new issue