반응형 개발/SpringSecurity1 SpringSecurity 인증 기본 동작 및 설정 1. 로그인(인증) 성공 시 SpringSecurity를 이용해 Form인증을 할 경우 성공 시 org.springframework.security.web.authentication.SavedRequestAwareAuthenticationSuccessHandler 가 동작하고 사용자가 처음 접근했던 페이지로 리다이렉트 시킴 사용자가 로그인 전 접속했던 페이지가 아닌 다른 페이지로 설정할 경우 defaultSeccessUrl 사용 http.formLogin().defaultSeccessUrl("/login-success") 로그인 성공 후 특정 URL을 호출하여 다른 로직을 한번 더 실행하고 싶은 경우 successForwardUrl 사용 http.formLogin().successForwardUrl("/.. 2021. 12. 14. 이전 1 다음 반응형