Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the basic difference between MVC and 3-tier architecture?

share|improve this question
2  
possible duplicate of MVC Vs n-tier architecture – brianpeiris Aug 5 '11 at 16:46

8 Answers

In larger applications MVC is the presentation tier only of an N-tier architecture. The models views and controllers are only concerned with the presentation, and make use of a middle tier to populate the models with data from the data tier.

MVC can also be used as the entire 3-tier architecture where Views are your presentation, Controllers are your business logic and Models are your data layer (usually generated by a DAL such as Entity Framework).

Ideally though you want your controllers to be skinny and dumb, passing off logic to a 'business component', which would essentially become your middle tier.

share|improve this answer
1  
If View=Presentation,Controller=Business and Model=DAL So what is the basic difference between them? which one is better and why? – chhaya Jan 5 '11 at 8:48
MVC could be said to be an implementation of a three tier architecture, but can also be the top tier in and of its self. – Michael Shimmins Jan 5 '11 at 10:40
7  
I agree with your 1st paragraph, but disagree with your 2nd. BL should not be in the controller. Strive for a robust Model containing the BL and a lean Controller. – atconway May 10 '12 at 13:44

I take a different approach compared to what Michael said in his response.

Controllers are never meant to be your business logic. For me, business logic belongs to the model layer. And though, views (and to some extent controllers) and part of the presentation layer, model is never a part of it in an MVC application. Model should be the heart and soul of an MVC application and that is what Domain Driven Design is all about which can be easily implemented in an MVC application.

Please remember that you don't have to have the model inside the same project (speaking of ASP.NET MVC). It could reside in an entirely different project and it can still act as a model to the application

An MVC application acting as a presentation layer only can work in a huge project with many tiers but it can never act as a presentation only layer in a 3 tier architecture which is what the questioner asked.

So we can say that MVC makes two (third can be the data layer which isn't really part of MVC architecture per se) out of three layers of a 3-tier architecture.

Thanks.

share|improve this answer

A 3-tier architecture is linear where the client tier never actually communicates with the data tier--all communication passes through the middle tier. MVC on the other hand is more triangular where the view sends updates to the controller and receives updates from the model and the controller updates the model.

(See "Comparison with the MVC architecture" on http://en.wikipedia.org/wiki/3-tier_architecture)

share|improve this answer
2  
I believe you copied this answer from Wikipedia. It's better if you cite your source. "Check Comparison with the MVC Architecture" paragraph @en.wikipedia.org/wiki/3-tier_architecture – chris Jan 2 '11 at 8:14
I added the source, thanks for the tip! – FriendlyDev Jan 2 '11 at 19:56

In the 3-tier architecture, communication between tiers is bi-directional. In the MVC the communication is in unidirectional; we could say that each "layer" is updated by the one at the left and, in turn, updates the one at the right –where "left" and "right" are merely illustrative.

3-Tier architecture usually deploy as 3 separate processes on 3 separate network nodes. But MVC is designed to deploy as a single process in a single network node. (like a desktop application)

Business tier in 3-tier usually contains different layers implementing famous patterns like business delegate, business façade, business object, service locator, data transfer object, etc. But MVC is a design pattern itself that is used in presentation tier.

The goal of 3-tier is separation of business logic from client and database, so provide multiple client protocols, high scalability, heterogeneous data access, etc. But the main goal of MVC is that implementation changes in one part do not require changes to another.

share|improve this answer

What is a 3-tier architecture?

Three-tier (layer) is a client-server architecture in which the user interface, business process (business rules) and data storage and data access are developed and maintained as independent modules or most often on separate platforms. Basically, there are 3 layers, tier 1 (presentation tier, GUI tier), tier 2 (business objects, business logic tier) and tier 3 (data access tier). These tiers can be developed and tested separately.

DAL - Data Access Layer ( it has Connectionstring and Data read & execute process)

BOL - Bussiness Object Layer ( it has Queries )

UI - User Interface ( Forms & Code Behind )

More Details : 3 Tier Archtecture

share|improve this answer
nice answer..this is very help ful.. – user851253 Jul 28 '11 at 12:57
Well, except that it's at best only half the question. Can you delta MVC? – ruffin Dec 12 '12 at 14:31

IMO there is no direct comparison between 3-Tier architecture and MVC. Both are used in conjuction and hence we tend to see them through the same lense. Conceptually they need not to be used together. I could have 3-Tier architecture that does not use what MVC has to offer.

I am not elaborating the definitions part, but in nutshell:

3-Tier is a software architecture approach, in which the user interface, business process are logic, data tier developed independently, most often on separate platforms.

MVC has evolved from software pattern to architectural pattern over a period of time and is seen in all major frameworks nowadays.

share|improve this answer
Agreed, they are orthogonal, but complementary. – Martin Spamer Jun 8 '12 at 11:04

3-tier is a Architecture Style and MVC is a Design Pattern.

so is Different in that.

but we could using mvc pattern in 3-tier architecture style.

so:

Presentation Tier: "Controllers and Views" from MVC Pattern.

Business Tier : "Model(Data)" from MVC Pattern.

Data Access Tier : Original Data Access Tier.

share|improve this answer

My experience is that MVC is a just another "fad" term for badly-written 3-tier, where some of the communication jumps around the business layers, and thus the client and/or data layer also has business rules mixed in.

I hate code written like that - The term MVC must have been designed to confuse HR recruiters into thinking older programmers (who know it as "3-tier") are not matched for the job.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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