Programming Tutorials

Comment on Tutorial - MVC Architecture (Model 2 Architecture) By Baski



Comment Added by : Ajay

Comment Added at : 2012-02-17 16:47:17

Comment on Tutorial : MVC Architecture (Model 2 Architecture) By Baski
Hi Tayo, approach 1 is recommended. In fact approach 2 is violation of the architecture. You need not to be separate controller servlet for each request. It can be a single controller servlet handling all the user requests. However when it becomes bulky we need to think about breaking it into multiple with some logical grouping.

View Tutorial