-Model
-ModelAndView
Model 객체 = 스프링이 넣어준다
Bean = Pojo = command 객체 = VO객체 = Dto객체
*WebApplicationContext
@Controller
@RequestMapping
@GetMapping
@RequestMapping(value = "/update )
3.command 객체를 이용하는 방법
- 내부동작
- MemberVO memberVO = new MemberVO();
- memberVO.setId(request.getParameter("id")
잘 봤습니다. 좋은 글 감사합니다.