I'm working on a dynamic website in Java and I'm interested in sticking with the MVC pattern. What is the best way to divide the work of a webapp between JSP and Servlets?
Should I see my JSP file as the view of the program and the Servlet more as the controller?
If I should use the Servlet as a controller, is it wise to give a Servlet more than one functionallity, for example: send in an action number to the Servlet and the Servlet will switch case on it to decide which action to do. This way i can create very few Servlets and each one would be in charge of a separate type of requests.