✔️ servlet?
- 클라이언트로부터 request가 들어오면 그에 맞는 처리를 하고 response를 해준다.
✔️ WebContent : context root. 물리적인 시작점.
✔️ 태그 정리
- <mvc:annotation-driven />
- <listener>
- <context-param>
✔️ TODO : Tasks를 통해 확인할 수 있는 기능을 가진 주석
✔️ Annotation 정리
- <mvc:annotation-driven /> 태그가 찾아서 만들어준다.
- @Controller
- @Service
- @Repository
- @RequestMapping("url")
- @RequestParam("변수명")
- @ModelAttribute
- @SessionAttribute
- HandlerMapping(서블릿 매핑)
✔️ MVC 정리