Skip to content

Instantly share code, notes, and snippets.

@jppg
Created November 4, 2021 12:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jppg/f671e429714ced4217a19130dc2614fc to your computer and use it in GitHub Desktop.
Save jppg/f671e429714ced4217a19130dc2614fc to your computer and use it in GitHub Desktop.
@Configuration
@EnableSwagger2
public class SpringFoxConfig {
@Bean
public Docket productApi() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.any())
.paths(PathSelectors.any())
.build();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment