35 lines
864 B
Java
35 lines
864 B
Java
|
package com.greenorange.promotion.config;
|
||
|
|
||
|
import io.swagger.v3.oas.models.OpenAPI;
|
||
|
import io.swagger.v3.oas.models.info.Info;
|
||
|
import io.swagger.v3.oas.models.info.License;
|
||
|
import org.springframework.context.annotation.Bean;
|
||
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
||
|
/**
|
||
|
* Knife4j 接口文档配置
|
||
|
* 官网地址
|
||
|
*/
|
||
|
@Configuration
|
||
|
public class Knife4jConfig {
|
||
|
|
||
|
@Bean
|
||
|
public OpenAPI customOpenAPI() {
|
||
|
return new OpenAPI()
|
||
|
.info(new Info()
|
||
|
.title("青橙接口文档")
|
||
|
.version("1.0")
|
||
|
.description("青橙接口文档")
|
||
|
.termsOfService("http://doc.xiaominfo.com")
|
||
|
.license(new License().name("Apache 2.0")
|
||
|
.url("http://doc.xiaominfo.com")));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|