T231 openapi-swagger doc is automaticly generated
This commit is contained in:
		| @@ -0,0 +1,22 @@ | ||||
| package com.release11.klaus.config; | ||||
|  | ||||
| import org.springframework.context.annotation.Bean; | ||||
| import org.springframework.context.annotation.Configuration; | ||||
| 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.EnableSwagger2; | ||||
|  | ||||
| @Configuration | ||||
| @EnableSwagger2 | ||||
| public class SpringFoxConfig { | ||||
|     @Bean | ||||
|     public Docket api(){ | ||||
|         return new Docket(DocumentationType.SWAGGER_2) | ||||
|                 .select() | ||||
|                 .apis(RequestHandlerSelectors.any()) | ||||
|                 .paths(PathSelectors.any()) | ||||
|                 .build(); | ||||
|     } | ||||
| } | ||||
| @@ -22,7 +22,7 @@ import java.util.*; | ||||
|  */ | ||||
| @Slf4j | ||||
| @Controller | ||||
| @RequestMapping | ||||
| @RequestMapping(path = "/") | ||||
| @AllArgsConstructor | ||||
| public class MockController { | ||||
|     private final KlausService klausService; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user