Model-View-Controller (MVC) is a pattern used in software engineering to separate the application logic from the user interface. As the name implies, the MVC pattern has three layers. The model defines the business layer of the application, the view defines the presentation layer of the application, and the controller manages the flow of the application. […]
Continue reading >>
Jul
5
Jun
20
In our previous post we saw a Java Servlet in action. Servlets make it easy for us to access parameters, cookies, and other resources on the server. But at the moment of generating a response (HTML), it can become tedious quickly. JavaServer Pages (JSP) is the solution for this problem. A JSP page allows us […]
Continue reading >>