Skip to content

Instantly share code, notes, and snippets.

@rzymek
Last active July 3, 2020 16:37
Show Gist options
  • Save rzymek/2e7f7ee7f1d17a56c4e2f594cbd192d9 to your computer and use it in GitHub Desktop.
Save rzymek/2e7f7ee7f1d17a56c4e2f594cbd192d9 to your computer and use it in GitHub Desktop.
@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