MVC 1 Architecture



MVC 1 architecture

In MVC 1 architecture we know the work of the model, view and Control. 

But there are some different in MVC 1 architecture and its update version MVC 2,

Let we know MVC 1 architecture.

First We see the figure of MVC 1 architecture.


From the figure we see that:


  •      Request send by the user from browser (View layer) is going to controller part from view.
  •   The particular request come from the view part is handle by the controller part and the controller   decide which action (business logic file) is called for the particular request from the view.
  •     Most Important part in the MVC architecture the model part in which the controller call the particular action file which is provided by the Model part.


The most important thing in MVC 1 architecture is that the Model part combine the all database access (DBA), Business logic, webservices are in one file of model part.

So this is the advantage of MVC 1 architecture is that its provide the separate presentation (VIEW), Configure (Controller), Business logic (Model). 

But the main disadvantage of MVC 1 architecture is that the Model part has combine the Database Access, Core Business logic ,and  Webservices.so there is lots of problem to maintain the DBA and business logic












Previous                                                                                                                                                                                           Next

0 comments:

Post a Comment