Spring
-
spring frame work 에서 redirect 시 model에 값담아서 넘기기개발/java 2015. 12. 22. 14:17
//redirect public String test(RedirectAttributes redirectAttr) throws Exception { redirectAttr.addFlashAttribute("message", "안녕하세요"); return "redirect:/test.do"; } // test.jsp // (새로고침시 message 는 사라진다) alert('${message}') //안녕하세요 //redirect multiple value public String test(RedirectAttributes redirectAttr) throws Exception { Map map = new HashMap(); map.put("message1", "1"); map.put("message2", ..