JSP use and understanding

the most important thing to use JSP is to display the data extracted from the database into the html file?

Mar.03,2021

jsp is essentially servlet,. You can take a look at the class of his class file

.
public final class xxxjsp extends HttpJspBase implements JspSourceDependent
htmlout.write

in the MVC model, JSP is used for View to display database records, and Servlet is for the Controller, controller to accept user input and call the model and view to complete the user's requirements.

Menu