-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathSwaggerConfig.java
More file actions
33 lines (31 loc) · 1.15 KB
/
SwaggerConfig.java
File metadata and controls
33 lines (31 loc) · 1.15 KB
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
package com.dku.springstudy.config.security;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.ApiInfoBuilder;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
@Configuration
@EnableSwagger2
public class SwaggerConfig {
private ApiInfo commonInfo(){
return new ApiInfoBuilder()
.title("CarrotMarket API")
.version("1.0")
.build();
}
@Bean
public Docket allApi(){
return new Docket(DocumentationType.SWAGGER_2)
.groupName("USER")
.useDefaultResponseMessages(false)
.select()
.apis(RequestHandlerSelectors.any())
.paths(PathSelectors.any())
.build()
.apiInfo(commonInfo());
}
}