JSP Basic Concept Summary
What is JSP
To begin with, JSP stands for "Java Server Pages" from which we could get a little bit hints probably.
From the name, we could guess that It might have something to do with Java, Server and Internet Pages.
Simply put,
- JSP could be seen as HTML pages where there are java code inserted through the use of spescial JSP tags, most of which start with <% and end with %>.
- JSP is intended for creating dynamically generated web pages. (When a page is dynamic, it continually updates the information, at the same time, the web page is being displayed to the client.)