forked from 28Deepa/RESTFUL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwaggerConfig.java
42 lines (36 loc) · 1.5 KB
/
SwaggerConfig.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.example.demo;
import java.util.Collections;
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.Contact;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
@Configuration
@EnableSwagger2
//@ComponentScan(basePackages = {"io.swagger", "org.openapitools.api" , "io.swagger.config"})
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.any())
.paths(PathSelectors.any())
.build()
.apiInfo(apiInfo());
}
private ApiInfo apiInfo() {
return new ApiInfo(
"Online Ordering APIs",
"Some custom description of API.",
"api v1",
"Terms of service",
new Contact("Banuprakash C", "http://lucidatechnologies.com", "[email protected]"),
"License of API",
"API license URL",
Collections.emptyList());
}
}