Each element plays a role and one application is completed.
element | name | role |
---|---|---|
Java class | Model | Store processing and data |
JSP | View | Responsible for displaying the screen |
Servlet class | Controller | Accept and allocate processing |
Actually, we will create an MVC model. Pass instructions from the Controller to the Model and View.
From the Servlet class, we will request various processing from the Jave class that is the Model and the JSP that is responsible for the View.
Recommended Posts