[스프링 시큐리티] 예외 등록하기
Static 리소스 파일들이 스프링 시큐리티에 의해 접근이 차단되는 경우
@Configuration
@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
public void configure(WebSecurity web) throws Exception {
web.ignoring()
.requestMatchers(PathRequest.toStaticResources().atCommonLocations());
}
}