vote up 2 vote down star

I've been reading through a couple of questions on here and various articles on MVC and can see how it can even be applied to GUI event intensive applications like a paint app.

Can anyone cite a situation where MVC might be a bad thing and its use ill-advised?

EDIT: I'm specifically talking about GUI applications here!

flag

8 Answers

vote up 12 vote down check

I tried MVC in my network kernel driver. The patch was rejected.

link|flag
2  
+1 good one! :-) – marc_s May 25 at 14:58
1  
Ha I'm contemplating updating my question to specify GUI apps..! – joshcomley May 25 at 15:00
:P thanks marc_s – Aiden Bell May 25 at 15:01
@joshcomley - Might be a good idea hehe – Aiden Bell May 25 at 15:01
@Josh -- I agree. As it is, the question is a bit like asking "what are some jobs where using a screwdriver would be a bad thing" -- limiting the question to instances where using a screwdriver would even be meaningful will result in better answers. Aiden's is funny, but not particularly useful except to point out the obvious limitations of the tool. – tvanfosson May 25 at 15:05
vote up 4 vote down

I think you're looking at it kind of backwards. The point is not to see where you can apply a pattern like MVC, the point is to learn the patterns and recognize when the problem you are trying to solve can naturally be solved by applying the pattern. So if your problem space can be naturally divided into model, view and controller then it is a good candidate for MVC. If you can't easily see which parts of your design fall into the three categories, it may not be the appropriate pattern.

link|flag
Good point. The question arose from everytime I couldn't find a way to fit it, a Google search and a few reads later finds a way to use MVC - in a natural and useful manner. – joshcomley May 25 at 15:15
+1 for a different perspective - always a useful approach! – Treb May 25 at 15:22
+1 I agree MVC is a description of a problem class rather than a solution outside of that class. – Aiden Bell Jun 1 at 22:25
vote up 1 vote down

Anything where you want to drop in 3rd party components will make it tough to work in the MVC pattern. A good example of this is a CMS.

Each component you get will have their "own" controller objects and you won't be able to share "control" of model -> ui passing.

link|flag
Depends on whether the 3rd party components are built to work in an MVC world. They could be built to work with specific models and not require separate controllers, with your own controller/action providing the model required. I already have a few instances of user controls that could eventually be refactored into generic components. – tvanfosson May 25 at 15:08
vote up 1 vote down

I don't necessarily know that MVC is ever really a bad idea for a GUI app. But there are alternatives that are arguably better (and also arguably worse depending on whose opinion you're asking). The most common is MVP. See here for an explanation: Everything You Wanted To Know About MVC and MVP But Were Afraid To Ask.

Although I suppose it might be a bad idea to use MVC if you're using a framework or otherwise interacting with software that wasn't designed with MVC in mind.

In other words, it's a lot like comparing programming languages. There's usually not many tasks that one can say that one is better than the other for. It usually boils down to programmer preference, availability of libraries, and the team's experience.

link|flag
vote up 0 vote down

When is it a bad thing? Where ever there is another code-structure that would better fit your project.

There's countless projects where MVC wouldn't "fit", but I don't see how a list of them would be of any benefit..

If MVC fits, use it, if not, use something else..

link|flag
I'm not after a list of applications, I'm after some generic justifications for not using MVC – joshcomley May 25 at 15:06
vote up 0 vote down

MVC makes sense for web applications. In web applications, you process some data (on SA: writing questions, adding comments, changing user info), you have state (logged in user), you don't have many different pages, but a lot of different content to fit into those pages. One Question page vs. a million questions.

For making CMS, for example, MVC is useless. You don't have any models, no controllers, just a pages of text with decorations and menus. The problem is no longer processing data - the problem now is serving that text content properly.

Tho, CMS Admin would build on top of MVC just fine, it's just user part that wouldn't.

For web services, you'd better use REST which, I believe, is a distinct paradigm.

WebDAV application wouldn't benefit greatly from MVC, either.

The caveat on Ruby for Web programming is that Rails is better suited for building Web applications. I’ve seen many projects attempt to create a WebDAV server or a content management system CMS with Rails and fail miserably. While you can do a CMS in Rails, there are much more efficient technologies for the task, such as Drupal and Django. In fact, I’d say if you’re looking at a Java Portal development effort, you should evaluate Drupal and Django for the task instead.

link|flag
Why would you not have models in a CMS? Surely each "function" of the CMS could have a controller to go with it? – joshcomley May 25 at 15:02
Corrected: you can make your admin pages use MVC, but user pages are just pages of text, there are no distinct "functions" there, instead there are a handful of menus, a header, some text, a template to fit them all. – alamar May 25 at 15:05
@alamar -- sounds like a model to me. – tvanfosson May 25 at 15:06
You have no model 'cause CMS pages are stateless and don't process any data. Unless I've misunderstood you. – alamar May 25 at 15:07
1  
Each page has an id that identifies it. It has associated menus, a header value, some text. Your controller has an action to render a page by id, it pulls the header, the associated menu, the text, and the proper template (view). It renders the chosen view with the given data. I'm not saying that it's a good fit (partly because I haven't thought about it), but you do have a model. – tvanfosson May 25 at 15:13
show 7 more comments
vote up 0 vote down

MVC shouldn't be used in applications where performance is critical. I don't know if this still applys with the increase of computing power but one example is a call center application. If you can save .5 seconds per call entering and updating information those savings add up over time. To get the last bit of performance out of your app you should use a desktop app instead of a web app and have it talk directly to the database.

link|flag
1  
Stackoverflow is built using MVC and jeff has said that performance is critical. SO is really fast as well so i don't think performance is an issue. – Alex May 25 at 23:50
Yes from my experience MVC lends itself to good practise and I've never seen a performance overhead from using the MVC paradigm itself. – joshcomley May 26 at 9:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.