Spring Security HttpSecurity, WebSecurity 차이?
스프링 시큐리티 설정 중에 //패턴을 이용해서 접근막음 @Override protected void configure(HttpSecurity http) throws Exception {} //위에서 적용한 패턴의 제외한 접근 - 정적리소스, HTML 파일 허용처리 @Override public void configure(WebSecurity web) throws Exception {} HttpSecurity, WebSecurity 차이가 궁금했는데 실제로 사용 하는 것은 HttpSecurity 패턴은 보안처리 WebSecurity 패턴은 보안예외처리(정적리소스, HTML)