출처 : http://www.tutorialspoint.com/struts_2/basic_mvc_architecture.htm
http://www.programcreek.com/2011/08/struts-2-tutorials-mvc-design-pattern/
- MVC는 Model View Controller이고, 웹 어플리케이션 개발을 위한 디자인 패턴이다.
- Model : 가장 낮은 수준의 패턴이고 데이터를 갖고있다.
- View : 사용자에게 모든 데이터를 보여준다.
- Controller : 모델과 뷰 사이를 컨트롤 하는 소프트 웨어 코드.
- WEb Browser Client 가 HttpRequests로 컨트롤러에 요청을하고 컨트롤러는 필요한 데이터를 Model에서 얻고, 얻은 데이터를 View에 보여준다.
반응형
댓글