수업내용/프로젝트
[Spring] 반환경로가 redirect일 때, Model 객체에 담은 값을 View로 전달하는 법
주니어주니
2023. 2. 10. 12:29
Controller에서 반환경로가 redirect 일 때,
model.addAttribute("message", "정보 수정이 완료되었습니다.");
Model 객체에 담으면 view 객체로 값이 전달되지 않는다.
방법 1) RedirectAttributes 객체 사용
- 여러 개를 전달할 때 사용하면 좋음
방법 2) redirect 요청경로에 쿼리스트링 형태로 붙이기