Skip to content

Instantly share code, notes, and snippets.

@NandanSatheesh
Last active November 16, 2019 14:38
Show Gist options
  • Save NandanSatheesh/bac34bf13ffa846707627600692e2b7a to your computer and use it in GitHub Desktop.
Save NandanSatheesh/bac34bf13ffa846707627600692e2b7a to your computer and use it in GitHub Desktop.
Swagger Configuration for Spring Boot
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;
@EnableSwagger2
@Configuration
public class SwaggerConfig {
@Bean
public Docket apiDocket() {
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