redirect시 POST방식 Attribute 전달하기

2016. 3. 15. 15:15plming/Java - Spring

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";

}

 

 

'plming > Java - Spring' 카테고리의 다른 글

DataSource 2개 사용하기  (3) 2016.04.18
Interceptor 설정할 때 주의할 점  (0) 2016.04.07
ajax @ResponseBody없이 json 처리  (3) 2016.03.08
전자정부프레임워크(egov) 파일업로드  (1) 2015.10.06
Excel Upload  (1) 2010.12.20