웹 시큐리티(Web Security)-5Day
깃 허브:https://github.com/leejeongchan/springSecurity.git 로그인 성공(AuthenticationSuccessHandler) 로그인 성공 시에 특별한 것을 처리할 필요가 있습니다. 즉 쿠키를 처리하거나 특정 페이지로 이동시키거나... 이때는 AuthenticationSuccessHandler를 구현합니다. package org.zerock.security; import java.io.IOException; import java.util.ArrayList; import java.util.List; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import jav..