any body give me the full details of MVC1 and MVC2 difference with detailed indormation.
waiting for replys...
-
MVC1 vs MVC2 (2 messages)
- Posted by: srikanth gajjela
- Posted on: August 01 2003 04:15 EDT
Threaded Messages (2)
- MVC1 vs MVC2 by Preeti Ramesh on August 01 2003 05:03 EDT
- MVC1 vs MVC2 by Vivek Barsagadey on March 25 2010 05:53 EDT
-
MVC1 vs MVC2[ Go to top ]
- Posted by: Preeti Ramesh
- Posted on: August 01 2003 05:03 EDT
- in response to srikanth gajjela
MVC1 was a first generation approach that used JSP pages and the JavaBeans component architecture to implement the MVC architecture for the Web. HTTP requests are sent to a JSP page that implements Controller logic and calls out to the Model for data to update the View. This approach combines Controller and View functionality within a JSP page and therefore breaks the MVC paradigm. MVC1 is appropriate for simple development and prototyping. It is not, however, recommended for serious development.
MVC2 is a term invented by Sun to describe an MVC architecture for Web-based applications in which HTTP requests are passed from the client to a Controller servlet which updates the Model and then invokes the appropriate View renderer-for example, JSP technology, which in turn renders the View from the updated Model.
The hallmark of the MVC2 approach is the separation of Controller code from
content. (Implementations of presentation frameworks such as Struts, adhere to the MVC2 approach).
If you want to read a more detailed doc:
http://hk.sun.com/education/certification/sunone/files/chapter8.pdf -
MVC1 vs MVC2[ Go to top ]
- Posted by: Vivek Barsagadey
- Posted on: March 25 2010 05:53 EDT
- in response to Preeti Ramesh
I think there is not MVC 1 and MVC2 , MVC is architecture, is is not design pattern.
http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller