Skip to content

Instantly share code, notes, and snippets.

@quentinchap
Created May 5, 2018 22:05
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 quentinchap/28003465bfd11d69859e0e42e87acf1c to your computer and use it in GitHub Desktop.
Save quentinchap/28003465bfd11d69859e0e42e87acf1c to your computer and use it in GitHub Desktop.
package com.quentinchap.traductionmachine.conf
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
class SwaggerConfiguration {
@Bean
open fun api(): Docket = 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