Spring boot Security redirect 정보 가져오기
2024. 7. 29. 22:49ㆍJava/Spring Boot Security
@RequestMapping("/login")
public String login(HttpServletRequest request, HttpServletResponse response) {
// case1
HttpSession session = request.getSession();
log.debug(session.getAttribute("SPRING_SECURITY_SAVED_REQUEST"));
// case2
RequestCache requestCache = new HttpSessionRequestCache();
SavedRequest savedRequest = requestCache.getRequest(request, response);
log.debug(savedRequest.getRedirectUrl());
return "login";
}
'Java > Spring Boot Security' 카테고리의 다른 글
Spring boot Security와 sencha 연동시 고려사항 (0) | 2024.08.03 |
---|---|
Spring boot Security와 ajax 연동 (0) | 2024.07.29 |
Spring boot Security redirect after logging (0) | 2024.07.29 |
Spring boot Security에서 sencha 예외 처리 (0) | 2024.07.20 |
Spring boot Security Custom 화면 설정 (0) | 2024.06.13 |