What is JSP?

What is JSP?

JavaServerPages is server side component in a web application, used to dynamically generate HTML / XML documents. JSP allows the java code dynamically embedded within a web page like HTML and gets executed when the page is served by the server. After the page is served, the dynamic content is sent to the client. With the script, the page is run on the server before it reaches to the client. JSP are used to invoke the built-in functionalities. In addition to the HTML , the JSP technology adds a tag library which provides a platform independent extending capabilities of a web server.
Categories of JSP tags - Directives, Scripting elements, Actions
"Categories of JSP tags - Directives: The directive tags are used for simple java programming calls like importing packages, specifying the error handling pages or to handle session in a JSP page...
How a JSP is compiled into servlets by the container
How a JSP is compiled into servlets by the container - JSPs are compiled into JavaServlets by the JSP container...
How to use Javabeans from JSP pages?
How to use Javabeans from JSP pages? - Java beans are directly supported in JSP with JSP language elements...
Post your comment