Spring Security Swagger 예외처리

2023. 4. 3. 17:33Spring

728x90
public class SecurityConfig {

    // 인증, 인가 서비스가 필요하지 않은 endpoin 적용
    @Bean
    public WebSecurityCustomizer configure(){
        return (web) -> web.ignoring()
                .antMatchers(
                        "/v3/api-docs/**",
                        "/swagger-ui/**"
                );
    }

 

'Spring' 카테고리의 다른 글

Spring_JWT Token Setting  (0) 2023.05.15
SpringSecurity_CORS 설정  (0) 2023.04.10
Spring Swagger  (0) 2023.04.03
Spring Security  (0) 2023.04.03
JPA Mapping  (0) 2023.03.31