
google로 OAuth2 로그인을 구현했으나, 로그인 시 문제 상황은 기대 : 인증 후 /articles?token=로 리다이렉트되길 원했지만, 실제 : 리다이렉트가 이루어지지 않고, 기본 경로(/)로 이동 내가 지정해놓은 handler를 타지 않았다. 일반적인 실패라면 failureHandler라도 탔을텐데 타지 않고 redirect 주소도 무시했다.. 결과FilterChain 없는 onAuthenticationSuccess 메서드를 호출한 후 chain.doFilter를 호출.하지만 SimpleUrlAuthenticationSuccessHandler는 리다이렉트 기반 핸들러로, onAuthenticationSuccess에서 리다이렉트를 수행하므로 chain.doFilter를 호출하..