How to develop JSP/Servlets Web App using MVC pattern?
- by A.S al-shammari
I'm developing a JSP/Servlets web app (no frameworks). I want to use MVC pattern. I designed my project like this :
Controller :a servlet that reads a request, extracts the values,communicates with model objects and gives information to a JSP page.
View : JSP Pages.
Model : Java Classes / Java Beans .. etc .
The problem :
Index.jsp is the…