MVC vs. Observer Pattern - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T11:28:29Z http://stackoverflow.com/feeds/question/307933 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/307933/mvc-vs-observer-pattern 0 MVC vs. Observer Pattern Frank 2008-11-21T05:11:27Z 2008-12-11T22:44:40Z <p>I've recently asked a question on StackoverFlow about the MVC: <a href="http://stackoverflow.com/questions/305988/can-the-mvc-design-pattern-architectual-pattern-be-used-in-desktop-application">Can the MVC Design Pattern / Architectural pattern be used in Desktop Application Development?</a></p> <p>Based on the answer provided I started research on how this would be implemented in a Windows form Application. I came upon the following CodeProject article: <a href="http://www.codeproject.com/KB/cs/model_view_controller.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/model_view_controller.aspx</a></p> <p>In the comments below the article, certain users argue that (although this is a good article) it is actually the observer pattern. <strong>First, but less important, question is does anyone agree or disagree with that and why?</strong> </p> <p>Regarding the second and more important question: I'm trying to build a small task list program in .NET. It will be very tiny and hopefully fast. <strong>In general, what would be a better architecture for such a project? The Observer Pattern or the MVC Pattern? Or another pattern?</strong> </p> <p>Thank you</p> http://stackoverflow.com/questions/307933/mvc-vs-observer-pattern/308003#308003 0 Answer by RWendi for MVC vs. Observer Pattern RWendi 2008-11-21T05:54:18Z 2008-11-21T06:09:58Z <p>I would agree that the article is not MVC. Its more of an implementation of observer pattern. Observer pattern in .NET can be implemented by using events, which was the case of the article. </p> <p>MVC requires a controller class that controls what action to execute upon a request made from either the model, or the view. Applying MVC is a very good programming practice as it greatly promotes separation of concern. You will have a cleaner, more extensible, and more testable app with mvc. Another point to note, you can still apply observer pattern to an MVC app. They will not contradict each other.</p> <p>===========</p> <p>To answer your second question: which pattern is the best? I think the way you approach software development is rather wrong. You shouldn't worry too much about those things yet, not until you've hit a problem. e.g. If this object changes state I need these other objects to react to it, hence I would implement an observer pattern.</p> <p>If I were you I would start on the model side first, and then takes things from there.</p> http://stackoverflow.com/questions/307933/mvc-vs-observer-pattern/308016#308016 1 Answer by Gishu for MVC vs. Observer Pattern Gishu 2008-11-21T06:09:54Z 2008-11-21T06:09:54Z <p><em>(The article is not an example of MVC AFAIK for the simple reason that there is no controller.. it is more close to .net data binding if you ask me.)</em><br /> MVC is not the Observer pattern. MVC is concerned with separation of concerns. The Model, the View and the Controller all do one job and trust the others to do theirs. In a way, the Controller 'observes' the view (the view notifies the controller when something happens) and tells it how to react to a change. The controller also interacts with the model appropriately (whose responsibility is to encapsulate data and enforce constraints/rules)<br /> The Observer pattern is where you want to watch another object for a change in state. So you could say .net events follow the observer pattern</p> <p>If its really tiny, forget about patterns and just code it up without worrying about the architecture... Follow the heuristics/principles of good design</p> <ul> <li><a href="http://butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod" rel="nofollow">http://butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod</a></li> <li><a href="http://mmiika.wordpress.com/oo-design-principles/" rel="nofollow">http://mmiika.wordpress.com/oo-design-principles/</a></li> </ul> <p>If you run into design issues or it starts to get all messy, then bring in the pattern battalions.</p> http://stackoverflow.com/questions/307933/mvc-vs-observer-pattern/310660#310660 1 Answer by Ray Tayek for MVC vs. Observer Pattern Ray Tayek 2008-11-22T00:58:50Z 2008-11-22T00:58:50Z <p>usually the model in an mvc (<a href="http://en.wikipedia.org/wiki/Model-view-controller" rel="nofollow">http://en.wikipedia.org/wiki/Model-view-controller</a>) is an observable/subject (<a href="http://en.wikipedia.org/wiki/Observer_pattern#Subject" rel="nofollow">http://en.wikipedia.org/wiki/Observer_pattern#Subject</a>), while the views are observers (<a href="http://en.wikipedia.org/wiki/Observer_pattern#Observer" rel="nofollow">http://en.wikipedia.org/wiki/Observer_pattern#Observer</a>). also see: mvc in <a href="http://webcourse.cs.technion.ac.il/234321/Winter2005-2006/ho/WCFiles/08-Design-Patterns.ppt" rel="nofollow">http://webcourse.cs.technion.ac.il/234321/Winter2005-2006/ho/WCFiles/08-Design-Patterns.ppt</a></p>