@Controller public class ResponseViewController { @RequestMapping("/response-view-v1") public ModelAndView responseViewV1() { ModelAndView mav = new ModelAndView("response/hello").addObject("data","hello"); return mav; } }
hello.html
templates.response, hello.html로 뷰 이동
"data" key 값에 "hello" value 담아서 전달
@RequestMapping("/response-view-v2") public String responseViewV2(Model model) { model.addAttribute("data", "model data"); return "response/hello"; }