웹 시큐리티(Web Security)-1Day
깃허브: https://github.com/leejeongchan/springSecurity.git 스프링 웹 시큐리티 동작 방식은 필터와 인터셉터를 이용합니다. 인터셉터는 스프링에서 필터와 유사합니다. 두 공통점은 특정 서블릿이나 특정 컨트롤러의 접근에 관여하지만 차이점으로 필터는 스프링과 무관하고 인터셉터는 스프링의 빈으로 관리 된다는 점입니다. 우선 Spring Web Security를 설정합시다. 우선 pom.xml에 다음 라이브러리를 받습니다. org.springframework.security spring-security-web 5.0.6.RELEASE org.springframework.security spring-security-config 5.0.6.RELEASE org.springfra..