File tree 1 file changed +14
-1
lines changed
application-service/src/main/java/club/gach_dong/config
1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 3
3
import io .swagger .v3 .oas .models .Components ;
4
4
import io .swagger .v3 .oas .models .OpenAPI ;
5
5
import io .swagger .v3 .oas .models .info .Info ;
6
+ import io .swagger .v3 .oas .models .security .SecurityScheme ;
6
7
import io .swagger .v3 .oas .models .servers .Server ;
7
8
import org .springframework .beans .factory .annotation .Value ;
8
9
import org .springframework .context .annotation .Bean ;
11
12
@ Configuration
12
13
public class SwaggerConfig {
13
14
14
- @ Value ("${app.gateway.endpoint}" ) String gatewayEndpoint ;
15
+ @ Value ("${app.gateway.endpoint}" )
16
+ String gatewayEndpoint ;
17
+
15
18
@ Bean
16
19
public OpenAPI openAPI () {
17
20
return new OpenAPI ()
@@ -20,6 +23,16 @@ public OpenAPI openAPI() {
20
23
.addServersItem (serverItem ());
21
24
}
22
25
26
+ private Components component () {
27
+ return new Components ()
28
+ .addSecuritySchemes ("Authorization" ,
29
+ new SecurityScheme ()
30
+ .type (SecurityScheme .Type .HTTP )
31
+ .scheme ("Bearer" )
32
+ .bearerFormat ("JWT" ));
33
+ }
34
+
35
+
23
36
private Info apiInfo () {
24
37
return new Info ()
25
38
.title ("가츠동 API 명세 - 지원 서비스" )
You can’t perform that action at this time.
0 commit comments