1.excel台账导入

2.pom文件添加
3.添加knife4j
4.添加日志
This commit is contained in:
wr
2023-09-26 19:35:33 +08:00
parent 547e83d786
commit 8316ac73f2
10 changed files with 498 additions and 2 deletions

View File

@@ -0,0 +1,34 @@
package com.njcn.jbsyncdata.util;
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;
import springfox.documentation.swagger2.annotations.EnableSwagger2WebMvc;
@Configuration
@EnableSwagger2WebMvc
public class Knife4jConfiguration {
@Bean(value = "defaultApi2")
public Docket defaultApi2() {
Docket docket=new Docket(DocumentationType.SWAGGER_2)
.apiInfo(new ApiInfoBuilder()
.title("冀北数据同步API接口文档")
.description("冀北数据同步API")
.termsOfServiceUrl("http://www.xx.com/")
.version("1.0")
.build())
//分组名称
.groupName("2.X版本")
.select()
//这里指定Controller扫描包路径
.apis(RequestHandlerSelectors.basePackage("com.njcn.jbsyncdata.controller"))
.paths(PathSelectors.any())
.build();
return docket;
}
}