implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2'
package com.wevel.wevel_server.config;
import io.swagger.v3.oas.annotations.OpenAPIDefinition;
import io.swagger.v3.oas.annotations.info.Info;
import io.swagger.v3.oas.models.Components;
import io.swagger.v3.oas.models.OpenAPI;
import io.swagger.v3.oas.models.security.SecurityRequirement;
import io.swagger.v3.oas.models.security.SecurityScheme;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@OpenAPIDefinition(
info = @Info(
title = "Wevel API Docs",
description = "Description",
version = "v1"
)
)
@Configuration
public class SwaggerConfig {
private static final String BEARER_TOKEN_PREFIX = "Bearer";
@Bean
public OpenAPI openAPI() {
String securityJwtName = "JWT";
SecurityRequirement securityRequirement = new SecurityRequirement().addList(securityJwtName);
Components components = new Components()
.addSecuritySchemes(securityJwtName, new SecurityScheme()
.name(securityJwtName)
.type(SecurityScheme.Type.HTTP)
.scheme(BEARER_TOKEN_PREFIX)
.bearerFormat(securityJwtName));
return new OpenAPI()
.addSecurityItem(securityRequirement)
.components(components);
}
}
private static final String[] AUTH_WHITELIST = {
"/api/**", "/graphiql", "/graphql",
"/swagger-ui/**", "/api-docs", "/swagger-ui-custom.html",
"/v3/api-docs/**", "/api-docs/**", "/swagger-ui.html"
};
@Bean
public SecurityFilterChain filterChain(HttpSecurity httpSecurity) throws Exception {
return httpSecurity
.authorizeHttpRequests(
authorize -> authorize
.shouldFilterAllDispatcherTypes(false)
.requestMatchers(AUTH_WHITELIST)
.permitAll()
.anyRequest()
.authenticated()
)
.httpBasic().disable()
.formLogin().disable()
.cors().disable()
.csrf().disable()
.build();
}
public void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests(authorize -> authorize
.requestMatchers(PathRequest.toH2Console()).permitAll()
.requestMatchers("/api/**").permitAll()
.requestMatchers("/v2/api-docs", "/configuration/**", "/swagger*/**", "/webjars/**", "/swagger-ui/**").permitAll()
.anyRequest().authenticated()
)
Spring 서버를 실행한 뒤 → localhost:포트/swagger-ui/index.html
에 접속하기
참고자료