Which one is servlet centric architecture?
-
MVC2
-
MVC1
-
Both
-
None of the above
A
Correct answer
Explanation
MVC2 uses a servlet as a central controller, making it servlet-centric architecture. A single controller servlet receives all requests, determines the appropriate handler, invokes business logic, and selects the view for rendering. This separation provides better maintainability and testability compared to page-centric approaches.