I\'m trying to learn Java EE, starting with Servlets and JSPs in an MVC architecture. I know Servlets are often used as the controller and JSPs are often used as the view, and t
For Model 2 programming model, if you really want to do MVC programming, you can study "Page Controller" and "Front Controller" design patters to understand how they work behind the scene.
If you want to use ready-made framework, you can try out Spring MVC.
http://www.vaannila.com/spring/spring-mvc-tutorial-1.html
good luck.