Skip to content

Instantly share code, notes, and snippets.

@prestigegodson
Created September 6, 2018 13:23
Show Gist options
  • Save prestigegodson/da5d3d2fe59189f11004be3be11c742c to your computer and use it in GitHub Desktop.
Save prestigegodson/da5d3d2fe59189f11004be3be11c742c to your computer and use it in GitHub Desktop.
Spring boot swagger configuration
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.service.ApiInfo;
import springfox.documentation.service.ApiKey;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
import java.util.Arrays;
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.basePackage("com.prestigegodson.starter.restfulservice.controller"))
.paths(PathSelectors.any())
.build()
.apiInfo(apiInfo())
.securitySchemes(Arrays.asList(apiKey()));
}
private ApiInfo apiInfo() {
return new ApiInfo(
"Starter REST API",
"Starter Restful Service.",
"API v1",
"Free",
"Godson Ositadinma prestigegodson@gmail.com",
"", "" );
}
private ApiKey[] apiKey(){
return new ApiKey[]{
new ApiKey("Authorization","Authorization","header"),
new ApiKey("Refresh-Token","refreshToken","header")
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment