Help Please!!! Regarding MVC

Hi All,I am going to develop an web-application. I am looking for appropriate technologies for my project. Can anyone suggest me the advantages and disadvantages of MVC architecture. Please help...I am using jsp,beans and oracle8i for my project with iplanet web server.
[284 byte] By [kinnua] at [2007-9-27 23:18:54]
# 1

The advantages of using MVC-architecture in a server-side project are precisely the same as the advantages of using MVC in a client-side application.

A disadvantage can be increased complexity, BIG TIME! In a simple application server-side MVC is a pain in the ***. Then on the other hand in a major application MVC is almost a must; the alternative being total chaos.

Have a look at the following (if you have not already):

http://www.fawcette.com/javapro/2002_06/online/servlets_06_11_02/

http://www.brainopolis.com/jsp/mvc/KDuffey_MVC.html

Zetora at 2007-7-7 15:18:56 > top of Java-index,Other Topics,Patterns & OO Design...
# 2
MVC is great for isolating problems. You can construct testers for each module, feeding in fake or buggy data. Each module has a very specific purpose, and explaining a problem is easier when you ask someone for help on a bug.-Tim
phyzomea at 2007-7-7 15:18:56 > top of Java-index,Other Topics,Patterns & OO Design...