mirror of
https://github.com/201206030/novel-plus.git
synced 2025-07-01 15:26:37 +00:00
48 lines
1.5 KiB
Java
48 lines
1.5 KiB
Java
package com.java2nb.common.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.service.Contact;
|
|
import springfox.documentation.spi.DocumentationType;
|
|
import springfox.documentation.spring.web.plugins.Docket;
|
|
import springfox.documentation.swagger2.annotations.EnableSwagger2;
|
|
|
|
/**
|
|
* ${DESCRIPTION}
|
|
*
|
|
* @author xiongxy
|
|
* @create 2019-11-02 23:53
|
|
*/
|
|
@EnableSwagger2
|
|
@Configuration
|
|
public class Swagger2Config {
|
|
|
|
@Bean
|
|
public Docket createRestApi() {
|
|
return new Docket(DocumentationType.SWAGGER_2)
|
|
.apiInfo(apiInfo())
|
|
.select()
|
|
//为当前包路径
|
|
.apis(RequestHandlerSelectors.any())
|
|
.paths(PathSelectors.any())
|
|
.build();
|
|
}
|
|
|
|
//构建 api文档的详细信息函数
|
|
private ApiInfo apiInfo() {
|
|
return new ApiInfoBuilder()
|
|
//页面标题
|
|
.title("功能测试")
|
|
//创建人
|
|
.contact(new Contact("xiongxy", "1179705413@qq.com", "1179705413@qq.com"))
|
|
//版本号
|
|
.version("1.0")
|
|
//描述
|
|
.description("API 描述")
|
|
.build();
|
|
}
|
|
} |