I'm new to JSP and Servlet and i want to develop a web app using MVC pattern I'm wondering if there is any way to create a Controller using a servlet which can handle many actions and views (like the one in ASP.NET MVC)
For example i have a Controller named "AccountController" what i want is : when a user request the url /Account/Login the AccountController process the request (get or post) and shows the LoginView.jsp
And the same for the Url /Account/Register the AccountController process the request (get or post) and shows the RegisterView.jsp