While going through university and from following the development of SO, I've heard a lot about the Model-View-Controller architectural design pattern. I inadvertently used the MVC pattern even before I knew what it was, and still use it in my everyday job. From what I've seen, it's probably the most popular pattern used today. What I haven't heard much about though, are the alternative patterns you can use instead of MVC. What options are there, and for what reasons would you decide to use them over MVC? I'm also interested in knowing the types of systems they are typical of being used for. Finally, what are the pros and cons that come along with using them?
|
2
|
|
|
|
|
|
|
|||
|
|
|
I've occasionally seen MVC without the C, where the view listens for changes in the model's data and alters rendering accordingly, and where the methods in the model are bound to event handlers for the view. For projects where the view is by necessity tightly couple with the data (such as when there are visual components that directly relate to the model or attributes of the model), this can be rather useful, as it cuts out the "middle man." I think many would argue, though, that this is still MVC, just a hybridized version, and that the bindings established between the view and model are controller logic. |
||
|
|
|
|
Well, there's Model-View-Presenter, but I think you'll find that the most common "alternative" to MVC is really a lack of proper separation. As an extreme example, consider classic ASP pages where HTML, VBScript and SQL are found side-by-side in the same file. (That's not a bash of ASP — you'll find plenty of such examples in other languages.) |
||
|
|
|
|
Although the above answers are quite correct, I think it's much more important to note that the words "design pattern" are completely unknown to 90% of all people who create software. They just start writing code. The challenge is not selecting the best design approach, it's convincing others that design has value. |
||
|
|
|
|
You can roll your own MVC with the current ASP.NET framework and still keep the postback model. http://www.codeproject.com/KB/aspnet/RollingYourOwnMVCwithASP.aspx |
||
|
|
|
|
Web or Desktop applications? |
||
|
