Java Business RIA redefined!
The moose likes Java in General and the fly likes MVC The Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "MVC" Watch "MVC" New topic
Author

MVC

Jean Rodrigues
Greenhorn

Joined: Apr 30, 2003
Posts: 6
Hi, guys.
Well I've been in a discussion recently about MVC:
- I believe MVC architecture composes the presentation tier, correct?
- People are telling me MVC is composed of 3 tiers: Model - View - Controller. I think that's wrong. MVC is a whole architecture for the presentation layer.(Correct me if I'm wrong). I believe Model - View - Controller are just patterns that compose the whole architecture, not a layer itself.
- And therefore, MVC is just one tier.
What can you say about this?
Thanks in advance.

Jean Rodrigues<br />SCJP / SCWCD / SCBCD / SCEA I / SCJD (Finishing)
Ernest Friedman-Hill
author
Sheriff

Joined: Jul 08, 2003
Posts: 21809
Model, View, and Controller are concepts which you can use to explain a software architecture.
In the classic Smalltalk implementation, each concept is an object.
In Swing, for eaxh widget the View and Controller are smooshed together into one clump of objects, and the Model is another object.
But it's not incorrect for me to talk about a classic 3-tiered architecture seeing the database as the Model, the middle tier as the Controller, and the GUI as the View. Now, in this case, the View is actually a complex thing which itself contains a separate Controller and View, and uses the lower tiers as a Model.
But as I said, these things are just explanatory concepts, and you use them whenever they make sense.

[Jess in Action][My Art][AskingGoodQuestions]
Anonymous
Ranch Hand

Joined: Nov 22, 2008
Posts: 18943
I believe that MVC are only one tier!
[ October 02, 2003: Message edited by: Dalton Milkvicz ]
 
jQuery in Action, 2nd edition
 
subject: MVC
 
aspose file troubles