Skip to content

Instantly share code, notes, and snippets.

@alissonmbr
Created September 17, 2019 22:12
Show Gist options
  • Save alissonmbr/976f9d1e38c9015b39614956fe375221 to your computer and use it in GitHub Desktop.
Save alissonmbr/976f9d1e38c9015b39614956fe375221 to your computer and use it in GitHub Desktop.
SwaggerConfig Beca java
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 SwaggerConfig {
@Bean
public Docket api() {
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