What are MVP and MVC and what is the difference? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T18:34:24Zhttp://stackoverflow.com/feeds/question/2056http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference101What are MVP and MVC and what is the difference?Wolfbyte2008-08-05T10:06:33Z2009-11-25T18:40:09Z
<P>When looking beyond the RAD (drag-drop and configure) way of building User Interfaces that many tools encourage you are likely to come across 2 design patterns called Model-View-Controller and Model-View-Presenter. My question has two parts to it:</P>
<OL>
<LI>What issues do these patterns address?</LI>
<LI>How are they similar?</LI>
<LI>How are they different?</LI></OL>
http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference/2061#20612Answer by graham.reeds for What are MVP and MVC and what is the difference?graham.reeds2008-08-05T10:14:00Z2008-08-05T10:31:44Z<p><a href="http://martinfowler.com/eaaDev/uiArchs.html" rel="nofollow">Martin Fowler's website (and his books) have fantastic in-depth articles on various ui patterns and what they address.</a></p>http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference/2067#20672Answer by Graphain for What are MVP and MVC and what is the difference?Graphain2008-08-05T10:20:20Z2008-08-05T10:24:58Z<p>Both of these frameworks aim to seperate concerns - for instance, interaction with a data source (model), application logic (or turning this data into useful information) (Controller/Presenter) and display code (View). In some cases the model can also be used to turn a data source into a higher level abstraction as well. A good example of this is the <a href="http://blog.wekeroad.com/mvc-storefront/" rel="nofollow">MVC Storefront project</a>.</p>
<p>There is a discussion <a href="http://codebetter.com/blogs/jeremy.miller/archive/2007/10/31/development-trivial-pursuit-the-difference-between-mvc-and-the-different-flavors-of-mvp.aspx" rel="nofollow">here</a> regarding the differences between MVC vs MVP.</p>
<p>The distinction made is that in an MVC application traditionally has the view and the controller interact with the model, but not with each other.</p>
<p>MVP designs have the Presenter access the model and interact with the view.</p>
<p>Having said that, ASP.NET MVC is by these definitions an MVP framework because the Controller accesses the Model to populate the View which is meant to have no logic (just displays the variables provided by the Controller).</p>
<p>To perhaps get an idea of the ASP.NET MVC distinction from MVP, check out <a href="http://www.hanselman.com/blog/ASPNETMVCSessionAtMix08TDDAndMvcMockHelpers.aspx" rel="nofollow">this MIX presentation</a> by Scott Hanselman.</p>http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference/2068#206813Answer by Jon Limjap for What are MVP and MVC and what is the difference?Jon Limjap2008-08-05T10:21:13Z2008-08-05T10:21:13Z<p>I blogged about this a while back, quoting on <a href="http://blogs.infragistics.com/blogs/tsnyder/archive/2007/10/17/mvc-or-mvp-pattern-whats-the-difference.aspx" rel="nofollow">Todd Snyder's excellent post on the difference between the two</a>.</p>
<blockquote>
<p>Here are the key differences between
the patterns:</p>
<p>MVP Pattern</p>
<ul>
<li>View is more loosely coupled to the model. The presenter is
responsible for binding the model to
the view.</li>
<li>Easier to unit test because interaction with the view is through
an interface</li>
<li>Usually view to presenter map one to one. Complex views may have
multi presenters.</li>
</ul>
<p>MVC Pattern</p>
<ul>
<li>Controller are based on behaviors and can be shared across
views</li>
<li>Can be responsible for determining which view to display</li>
</ul>
</blockquote>
<p>Best explanation on the web I could find.</p>http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference/2069#20692Answer by Brett Veenstra for What are MVP and MVC and what is the difference?Brett Veenstra2008-08-05T10:22:55Z2008-08-05T10:26:29Z<ul>
<li>MVP = Model-View-Presenter</li>
<li><p>MVC = Model-View-Controller</p>
<ol><li>Both presentation patterns. They separate the dependencies between a Model (think Domain objects), your screen/web page (the View), and how your UI is supposed to behave (Presenter/Controller)</li>
<li>They are fairly similar in concept, folks initialize the Presenter/Controller differently depending on taste.</li>
<li>A great article on the differences is <a href="http://blogs.infragistics.com/blogs/tsnyder/archive/2007/10/17/mvc-or-mvp-pattern-whats-the-difference.aspx" rel="nofollow">here</a>. Most notable is that MVC pattern has the Model updating the View.</li></ol></li>
</ul>http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference/2387#238711Answer by urini for What are MVP and MVC and what is the difference?urini2008-08-05T14:30:20Z2008-08-05T15:00:28Z<p>I recommend Phil Haack's blog entry about the ASP.NET MVC:</p>
<p><a href="http://haacked.com/archive/2008/06/16/everything-you-wanted-to-know-about-mvc-and-mvp-but.aspx" rel="nofollow">http://haacked.com/archive/2008/06/16/everything-you-wanted-to-know-about-mvc-and-mvp-but.aspx</a></p>
<p>And this post by Jeremy D. Miller:</p>
<p><a href="http://codebetter.com/blogs/jeremy.miller/archive/2007/10/31/development-trivial-pursuit-the-difference-between-mvc-and-the-different-flavors-of-mvp.aspx" rel="nofollow">http://codebetter.com/blogs/jeremy.miller/archive/2007/10/31/development-trivial-pursuit-the-difference-between-mvc-and-the-different-flavors-of-mvp.aspx</a></p>http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference/2451#2451-3Answer by Kevin for What are MVP and MVC and what is the difference?Kevin2008-08-05T15:08:41Z2008-11-09T19:21:11Z<p>At first I was confused by MVP and couldn't think of how to implement a practical example on the web. After reading the first link in this post I realized that concept is primarily geared towards GUI Applications rather than web-based apps.</p>http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference/4087#40875Answer by Brian Leahy for What are MVP and MVC and what is the difference?Brian Leahy2008-08-06T22:51:07Z2008-08-06T22:51:07Z<p>MVP the View is in charge. <br>
The View, in most cases, creates it's Presenter. The Presenter will interact with the model and manipulate the View through an interface. The View will sometimes interact with the Presenter, usually through some interface. This comes down to implementation, do you want the View to call methods on the presenter or do you want the View to have events the Presenter listens to. It boils down to this: The View knows about the Presenter. The View delegates to the Presenter.</p>
<p>MVC the Controller is in charge. <br>
Controller is created or accessed based on some event/request, the controller then creates the appropriate View and interacts with the Model to further configure the View. It boils down to: Controller creates and manages View, View is slave to Controller. View does not know about Controller.</p>http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference/5712#57123Answer by Jonas Follesø for What are MVP and MVC and what is the difference?Jonas Follesø2008-08-08T05:55:12Z2009-11-25T18:40:09Z<p>Also worth remembering is that there are different types of MVP as well. Fowler have broken the pattern into two - Passive View and Supervising Controller.</p>
<p>When using Passive View your View typically implement a fain grained interface with properties mapping more or less directly to the underlaying UI widget. For instance you might have a ICustomerView with properties like Name and Address.</p>
<p>Your implementation might look something like this:</p>
<pre><code>public class CustomerView : ICustomerView
{
public string Name
{
get { return txtName.Text; }
set { txtName.Text = value; }
}
}
</code></pre>
<p>Your Presenter class will talk to the model and "map" it to the view. This approach is called the "Passive View". The benefit is that the view is easy to test, and it is easier to move between UI platforms (Web/Win/XAML etc). The disadvantage is that you cant leverage things like databinding (which is <em>really</em> powerfull in frameworks like WPF and Silverlight).</p>
<p>The second flavor of MVP is the Supervising Controller. In that case your View might have a property called Customer, which then again is databound to the UI widgets. You don't have to think about synchronizing and micro-manage the view, and the Supervising Controller can step in and help when needed, for instance with compled interaction logic.</p>
<p>The third "flavor" of MVP (or someone would perhaps call it a separate pattern) is the Presentation Model (or sometimes referred to Model-View-ViewModel). Compared to the MVP you "merge" the M and the P into one class. You have your customer object which your UI widgets is data bound to, but you also have additional UI-spesific fields like "IsButtonEnabled", or "IsReadOnly" etc.</p>
<p>I think the best resource I've found to UI architecture is the series of blog posts done by Jeremy Miller over at <a href="http://codebetter.com/blogs/jeremy.miller/archive/2007/07/25/the-build-your-own-cab-series-table-of-contents.aspx" rel="nofollow">http://codebetter.com/blogs/jeremy.miller/archive/2007/07/25/the-build-your-own-cab-series-table-of-contents.aspx</a>. He covered all the flavors of MVP, and show C# code to implement them.</p>
<p>I have also blogged about the Model-View-ViewModel pattern in the context of Silverlight over at <a href="http://jonas.follesoe.no/YouCardRevisitedImplementingTheViewModelPattern.aspx" rel="nofollow">http://jonas.follesoe.no/YouCardRevisitedImplementingTheViewModelPattern.aspx</a>.</p>
http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference/26933#269338Answer by Quibblesome for What are MVP and MVC and what is the difference?Quibblesome2008-08-25T21:22:00Z2008-08-25T21:22:00Z<p>MVP is <em>not</em> necessarily a scenario where the View is in charge (see Taligent's MVP for example). I find it unfortunate that people are still preaching this as a pattern as opposed to an anti-pattern (which it is in my books) as it contradicts "It's just a view" (Pragmatic Programmer). "It's just a view" states that the final view shown to the user is a secondary concern of the application. Microsoft's MVP pattern renders re-use of Views much more difficult and <em>conveniently</em> excuses Microsoft's designer from encouraging bad practice.</p>
<p>To be perfectly frank, I think the underlying concerns of MVC hold true for any MVP implementation and the differences are almost entirely semantic. As long as you are following separation of concerns between the view (that displays the data), the controller (that initialises and controls user interaction) and the model (the underlying data and/or services)) then you are acheiving the benefits of MVC. If you are acheiving the benefits then who really cares whether your pattern is MVC, MVP or Supervising Controller? The only <em>real</em> pattern remains as MVC, the rest are just differing flavours of it.</p>
<p>Consider <a href="http://ctrl-shift-b.blogspot.com/2007/08/interactive-application-architecture.html" rel="nofollow">this</a> highly exciting article that comprehensively lists a number of these differing implementations.
You may note that they're all basically doing the same thing but slightly differently.</p>
<p>I personally think MVP has only been recently re-introduced as a catchy term to either reduce arguments between semantic bigots who argue whether something is truly MVC or not or to justify Microsofts Rapid Application Development tools. Neither of these reasons in my books justify its existence as a separate design pattern.</p>
http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference/101561#101561150Answer by Glenn Block for What are MVP and MVC and what is the difference?Glenn Block2008-09-19T12:46:52Z2009-05-13T21:23:19Z<h2>Model-View-Presenter</h2>
<p>In <strong>MVP</strong>, the Presenter contains the the UI business logic for the View. All invocations from the View delegate directly to Presenter. The Presenter is also decoupled directly from the View and talks to it through an interface. This is to allow mocking of the View in a unit test. One common attribute of MVP is that there has to be a lot of two-way dispatching. For example, when someone clicks the "Save" button, the event handler delegates to the Presenter's "OnSave" method. Once the save is completed, the Presenter will then call back the View through it's interface so that the View can display that the save has completed. </p>
<p>MVP tends to be a very natural pattern for achieving separated presentation in Web Forms. The reason is because the View is always created first by the ASP.NET runtime. You can <a href="http://www.codeplex.com/websf/Wiki/View.aspx?title=MVPDocumentation&referringTitle=bundles" rel="nofollow">find out more about both variants</a>.</p>
<h3>Two primary variations</h3>
<p><strong>Passive View:</strong> The View is as as dumb as possible and contains almost zero logic. The Presenter is a middle man that talks to the View and the Model. The View and Model are completely shielded from one another. The Model may raise events, but the Presenter subscribes to them for updating the View. In Passive View there is no direct data binding, instead the View exposes setter properties which the Presenter uses to set the data. All state is managed in the Presenter and not the View.</p>
<ul>
<li>Pro: maximum testability surface; clean separation of the View and Model</li>
<li>Con: more work (for example all the setter properties) as you are doing all the data binding yourself. </li>
</ul>
<p><strong>Supervising Controller:</strong> The Presenter handles user gestures. The View binds to the Model directly through data binding. In this case it's the Presenter's job to pass off the Model to the View so that it can bind to it. The Presenter will also contain logic for gestures like pressing a button, navigation, etc. </p>
<ul>
<li>Pro: by leveraging databinding the amount of code is reduced. </li>
<li>Con: there's less testable surface (because of data binding), and there's less encapsulation in the View since it talks directly to the Model.</li>
</ul>
<h2>Model-View-Controller</h2>
<p>In the <strong>MVC</strong>, the Controller is responsible for determining which View is displayed in response to any action including when the application loads. This differs from MVP where actions route through the View to the Presenter. In MVC, every action in the View correlates with a call to a Controller along with an action. In the web each action involves a call to a URL on the other side of which there is a Controller who responds. Once that Controller has completed it's processing, it will return the correct View. The sequence continues in that manner throughout the life of the application:</p>
<pre>
Action in the View
-> Call to Controller
-> Controller Logic
-> Controller returns the View.
</pre>
<p>One other big difference about MVC is that the View does not directly bind to the Model. The view simply renders, and is completely stateless. In implementations of MVC the View usually will not have any logic in the code behind. This is contrary to MVP where it is absolutely necessary as if the View does not delegate to the Presenter, it will never get called.</p>
<h2>Presentation Model</h2>
<p>One other pattern to look at is the <strong>Presentation Model</strong> pattern. In this pattern there is no Presenter. Instead the View binds directly to a Presentation Model. The Presentation Model is a Model crafted specifically for the View. This means this Model can expose properties that one would never put on a domain model as it would be a violation of separation-of-concerns. In this case, the Presentation Model binds to the domain model, and may subscribe to event coming from that Model. The View then subscribes to events coming from the Presentation Model and updates itself accordingly. The Presentation Model can expose commands which the view uses for invoking actions. The advantage of this approach is that you can essentially remove the code-behind altogether as the PM complete encapsulates all of the behaviour for the view. This pattern is a very strong candidate for use in WPF applications and is also called <a href="http://blogs.msdn.com/dancre/archive/2006/10/11/datamodel-view-viewmodel-pattern-series.aspx" rel="nofollow">Model-View-ViewModel</a>.</p>
<p>There is a <a href="http://msdn.microsoft.com/en-us/library/cc707885.aspx" rel="nofollow">MSDN article about the Presentation Model</a> and a section in the <a href="http://msdn.microsoft.com/en-us/library/cc707819.aspx" rel="nofollow">Composite Application Guidance for WPF</a> (former Prism) about <a href="http://msdn.microsoft.com/en-us/library/cc707862.aspx" rel="nofollow">Separated Presentation Patterns</a></p>
http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference/110908#1109082Answer by Nikola Malovic for What are MVP and MVC and what is the difference?Nikola Malovic2008-09-21T12:32:14Z2008-09-22T07:07:21Z<p>Both are patterns trying to separate presentation and business logic, decoupling business logic from UI aspects</p>
<p>Architecturally, MVP is Page Controller based approach where MVC is Front Controller based approach.
That means that in MVP standard web form page life cycle is just enhanced by extracting the business logic from code behind. In other words, page is the one servicing http request. In other words, MVP IMHO is web form evolutionary type of enhancement.
MVC on other hand changes completely the game because the request gets intercepted by controller class before page is loaded, the business logic is executed there and then at the end result of controller processing the data just dumped to the page ("view")
In that sense, MVC looks (at least to me) a lot to Supervising Controller flavor of MVP enhanced with routing engine </p>
<p>Both of them enable TDD and have downsides and upsides. </p>
<p>Decision on how to choose one of them IMHO should be based on how much time one invested in ASP NET web form type of web development.
If one would consider himself good in web forms, I would suggest MVP.
If one would feel not so comfortable in things such as page life cycle etc MVC could be a way to go here.</p>
<p>Here's yet another blog post link giving a little bit more details on this topic </p>
<p><a href="http://blog.vuscode.com/malovicn/archive/2007/12/18/model-view-presenter-mvp-vs-model-view-controller-mvc.aspx" rel="nofollow">http://blog.vuscode.com/malovicn/archive/2007/12/18/model-view-presenter-mvp-vs-model-view-controller-mvc.aspx</a></p>
http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference/406470#4064701Answer by Pedro Santos for What are MVP and MVC and what is the difference?Pedro Santos2009-01-02T10:35:25Z2009-01-02T10:35:25Z<p>I have used both MVP and MVC and although we as developers tend to focus on the technical differences of both patterns the point for MVP in IMHO is much more related to ease of adoption than anything else. </p>
<p>If I’m working in a team that already as a good background on web forms development style it’s far easier to introduce MVP than MVC. I would say that MVP in this scenario is a quick win. </p>
<p>My experience tells me that moving a team from web forms to MVP and then from MVP to MVC is relatively easy; moving from web forms to MVC is more difficult.</p>
<p>I leave here a link to a series of articles a friend of mine has published about MVP and MVC.</p>
<p><a href="http://www.qsoft.be/post/Building-the-MVP-StoreFront-Gutthrie-style.aspx" rel="nofollow">http://www.qsoft.be/post/Building-the-MVP-StoreFront-Gutthrie-style.aspx</a></p>
http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference/489397#4893971Answer by Luke Breuer for What are MVP and MVC and what is the difference?Luke Breuer2009-01-28T21:11:08Z2009-01-28T21:11:08Z<p>Something I don't get is why data binding <em>has</em> to reduce testability. I mean, a view is effectively based off of what could be thought of as one or more database views, right? There might be connections between rows in different views. Alternatively, we can talk object-oriented instead of relational, but that actually doesn't change anything -- we still have one or more distinct data entities.</p>
<p>If we view programming as data structures + algorithms, then wouldn't it be best to have the data structures made explicit as possible, and then develop algorithms that each depend on as small a piece of data as possible, with minimal coupling between the algorithms?</p>
<p>I sense very Java-esque FactoryFactoryFactory thought patterns here -- we want to have multiple views, multiple models, multiple degrees of freedom all over the place. It's almost like that is the driving force behind MVC and MVP and whatnot. Now let me ask this: how often is the cost you pay for this (and there most definitely <em>is</em> a cost) worth it?</p>
<p>I also see no discussion of how to efficiently manage state between HTTP requests. Haven't we learned from the functional folks (and the voluminous mistakes made by imperative spaghetti) that state is evil and should be minimized (and when used, should be well understood)?</p>
<p>I see a lot of usage of the terms <em>MVC</em> and <em>MVP</em> without much evidence that people think critically about them. Clearly, the problem is "them", me, or both...</p>
http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference/1310797#13107970Answer by Ian Ringrose for What are MVP and MVC and what is the difference?Ian Ringrose2009-08-21T08:51:21Z2009-08-21T08:51:21Z<p>You may find the answers to <a href="http://stackoverflow.com/questions/654722/implementing-mvc-with-windows-forms">Implementing MVC with Windows Forms</a> helpful as they talk about the different options when implementing MVC and MVP</p>
http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference/1598169#15981691Answer by Derek Greer for What are MVP and MVC and what is the difference?Derek Greer2009-10-21T00:49:33Z2009-10-21T00:49:33Z<p>I wrote an article a few years ago on the topic of interactive application architecture patterns which includes a detailed discussion of both the MVC pattern and MVP pattern variants. You can find the article <a href="http://www.ctrl-shift-b.com/2007/08/interactive-application-architecture.html" rel="nofollow">here</a>.</p>