WebSecurityConfigurerAdapter 를 extends 하는 클래스를 생성하면, configure() 오버라이딩 된다. 이때, configure()의 파라미터에 따라 3가지 메서드를 오버라이딩 할 수 있다. 1. void configure(HttpSecurity http) : 요청 경로에 대한 접근 권한, 로그인, 로그아웃 등 설정 2. void configure(WebSecurity web) : 특정한 요청을 무시할 수 있다. 3. void configure(AuthenticationManagerBuilder auth) : 사용자 인증 정보를 구성한다. (1) inmemory 방법 @Configuration @EnableWebSecurity @RequiredArgsConstructor p..