Spring

redirect시 POST방식 Attribute 전달하기

top2blue 2016. 9. 2. 15:52

Controller에서

redirect시 Attribute 전달하는 것은 GET방식이 수월하나

POST방식으로 전달하고자 할 때...

Spring MVC 3.1 이상에서 가능한...

public String xxx( xxVO xxxVO, ..., RedirectAttributes redirectAttributes ) throws Exception {

 ...

  redirectAttributes.addFlashAttribute( "yyyVO", yyyVO );

  return "redirect:/xxx.do";

}