Last active
July 3, 2020 16:37
-
-
Save rzymek/2e7f7ee7f1d17a56c4e2f594cbd192d9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Configuration @EnableSwagger2 | |
@Import(BeanValidatorPluginsConfiguration.class) | |
public class SwaggerConfig { | |
@Bean | |
public Docket api() { | |
return new Docket(DocumentationType.SWAGGER_2).select() | |
.apis(RequestHandlerSelectors.basePackage(getClass().getPackageName())) | |
.paths(PathSelectors.any()).build(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment