개인 프로젝트를 진행하는 도중 스프링 시큐리티에서 문제가 발생했다. 기존 까지는 로그인 과정을 직접 개발하면서 세션에 멤버 정보를 저장하면서 개발하였지만, 자잘한 문제와 소셜 로그인 로그인 로그아웃에서의 연결에서도 모호한 관계가 되어서 사용 안정성과 디버깅의 편리를 위해서 스프링 시큐리티를 사용하기로 하였다. package GoodPang.goodPang.config;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.security.config.annotation.web.builders.HttpSecurity;..