Model, ModelMap, ModelAndView 차이점
Model, ModelMap Vs ModelAndView 차이점
Model, ModelMap 공통점
Model, ModelMap 차이점
Java Controller
1 2 3 4 5 6 7 8 9 10 11 12 13 |
@RequestMapping(value = "/test.do") public String test(HttpServletRequest request, Model model, ModelMap modelMap){
String modelStr = "Model Test"; String modelMapStr = "ModelMap Test";
model.addAttribute("modelVar", modelStr); model.addAttribute("modelMapVar", modelMapStr);
return "temp/test"; }
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter |
JSP
1 2 3 4 5 |
<body> Model 저장한 값 : <input type="text" value="${modelVar }"/><br/> ModelMap 저장한 값 : <input type="text" value="${modelMapVar }"/> </body>
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter |
Web Page
ModelAndView
Java Controller
1 2 3 4 5 6 7 8 9 10 11 |
@RequestMapping(value = "/test.do") public ModelAndView test(HttpServletRequest request, ModelAndView mv){
String modelAndViewStr = "ModelAndView Test";
mv.addObject("modelAndViewVar", modelAndViewStr); mv.setViewName("temp/test");
return mv; }
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter |
JSP
1 2 3 4 |
<body> ModelAndView 저장한 값 : <input type="text" value="${modelAndViewVar }"/><br/> </body>
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter |
[Jquery] 키보드(keydown)이벤트 (0) | 2021.02.16 |
---|---|
Javascript 와 jquery 에서 display 로 영역 숨기는 법 (0) | 2020.10.21 |
자바스크립트 폼 체크, 및 비밀번호 hashing (0) | 2020.08.05 |
[Javascript] Data Types (0) | 2020.07.24 |
[Javascript] DOM(Document, Object, Model) (0) | 2020.07.24 |