[HttpServletResponse / HttpServletRequest] 리다이렉트(redirect) / 포워드(forward)
선행되어야할 개념 : request, session, application https://sallykim5087.tistory.com/133 리다이렉트 vs forward 차이점 https://doublesprogramming.tistory.com/63 리다이렉트(redirect) 클라이언트가 요청한 내용에 대해 서버가 바로 응답하는 것이아니라 클라이언트에게 다시 요청하라고 서버가 강제 하는 것. 다른 context(project) 경로로도 이동 가능 하며, redirect 이동시에는 절대 경로로 이동하는 것이 일반적이다. 따라서 context 경로가 반드시 필요하다. //contextPath 얻어오기 request.getContextPath(); //리다이렉트 메소드 사용하기 response.sendR..