|
|
@@ -0,0 +1,23 @@
|
|
|
+package space.anyi.serve.config;
|
|
|
+
|
|
|
+import io.swagger.v3.oas.models.OpenAPI;
|
|
|
+import io.swagger.v3.oas.models.info.Contact;
|
|
|
+import io.swagger.v3.oas.models.info.Info;
|
|
|
+import org.springframework.context.annotation.Bean;
|
|
|
+import org.springframework.context.annotation.Configuration;
|
|
|
+
|
|
|
+@Configuration
|
|
|
+public class OpenApiConfig {
|
|
|
+
|
|
|
+ @Bean
|
|
|
+ public OpenAPI customOpenAPI() {
|
|
|
+ return new OpenAPI()
|
|
|
+ .info(new Info()
|
|
|
+ .title("Serve API")
|
|
|
+ .version("0.0.1-SNAPSHOT")
|
|
|
+ .description("Serve应用接口文档")
|
|
|
+ .contact(new Contact()
|
|
|
+ .name("杨逸"))
|
|
|
+ );
|
|
|
+ }
|
|
|
+}
|