Intro

Intro

  • 스프링 시큐리티에 대한 플로우 찍먹하기 (feat. JWT)

시큐리티의 시작

@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {
    @Override
    protected void configure(HttpSecurity http) throws Exception {
        super.configure(http); // breakpoint
    }
}
기본 시큐리티 필터 체인

Last updated

Was this helpful?