MVC DrawbacksOR Dis-Advantages

What are the dis-advantages of MVC pattern ?and are there any patterns better than MVC pattern or fill the drawbacks of MVC pattern ?Thanks in Advanceksk
[181 byte] By [ksk_78a] at [2007-10-2 10:50:52]
# 1

> What are the dis-advantages of MVC pattern ?

It distributes the code in several layers and packages. For people who can't deal with everything in one big hairball of a file that's a real disadvantage.

> and are there any patterns better than MVC pattern or

> fill the drawbacks of MVC pattern ?

Define "better". Better for what?

%

duffymoa at 2007-7-13 3:09:15 > top of Java-index,Other Topics,Patterns & OO Design...
# 2

> What are the dis-advantages of MVC pattern ?

>

Time. It is usually quicker for a trivial system to simply write spaghetti code. However, as the complexity of the system increases, pasta indigestion normally requires some tiering of concerns. BTW, the same is true of objects and packages in general. You want discrete, manageable bits of work to test.

> and are there any patterns better than MVC pattern or

> fill the drawbacks of MVC pattern ?

>

MVC simply advocates at least three tiers in a system and delinieates their responsibilities. The system I work on has seven. (Mainly because of the odiousness of remoting and the desire to have a service-oriented system). It's a balancing act.

> Thanks in Advance

>

> ksk

- Saish

Saisha at 2007-7-13 3:09:15 > top of Java-index,Other Topics,Patterns & OO Design...