Redirect

- 브라우저에서 이동하므로 주소가 변경됨.

- HttpServletRequest값은 주소 이동하면서 소멸.

 

Forward

- 서버에서 이동하므로 주소 변경x.

- 따라서 HttpServletRequest값도 여전히 남아있음.

⚠️ Model에서 Model로 값 전달x. Model로 전달하더라도 HttpServletRequest로 값 요청받아야 함. (ModelAndView도 마찬가지)

 

 

 

 

'◦ Spring Project > Basic' 카테고리의 다른 글

Application  (0) 2022.02.28
Session  (0) 2022.02.28
form:form  (0) 2022.02.24
Spring의 Command 객체  (0) 2022.02.24
Controller에서 View로 데이터 전달  (0) 2022.02.24

+ Recent posts