May 6
Posted on
Thursday, May 6, 2010 in
ww

Java Developers Guide to JSP
JavaServer Pages which is widely known and pronounced as JSP is a technology that works at server side. This Java Technology allows Java Developers to create pages in run-time environment whenever web client send request for certain page to server. JSP does this with supporting XML and hyper text document types. JSP pages are loaded at the server and executed from Java Server packet. This server packet is called J2EE Web Application.
This Java Technology helps Java Developers to embed code in to static web pages and allow them to be compiled at run time when any request arrives. Java Server pages works very closer and with the support provided by JVM (Java Virtual Machine) which is integrated with host operating system which can be vary from terminal to terminal.
There are basically two terminologies are there which are used when discussing JSP. One is Scriptlet and Markup through HTML or XML. These both terms indicates two different syntax used in JSP.
Scriptlet code block do not require to be completed in the immediate block but it can be completed in the later block. JSP code evaluation, validation and compilation is done dynamically which means run time. This run time compilation is not getting repeated every time but only when any change to code happens. Java Developers should be aware of the thing that JSP syntax adds additional XML tags as a part of JSP action.
JavaServer Pages which is widely known and pronounced as JSP is a technology that works at server side. This Java Technology allows Java Developers to create pages in run-time environment whenever web client send request for certain page to server. JSP does this with supporting XML and hyper text document types. JSP pages are loaded at the server and executed from Java Server packet. This server packet is called J2EE Web Application.
This Java Technology helps Java Developers to embed code in to static web pages and allow them to be compiled at run time when any request arrives. Java Server pages works very closer and with the support provided by JVM (Java Virtual Machine) which is integrated with host operating system which can be vary from terminal to terminal.
There are basically two terminologies are there which are used when discussing JSP. One is Scriptlet and Markup through HTML or XML. These both terms indicates two different syntax used in JSP.
Scriptlet code block do not require to be completed in the immediate block but it can be completed in the later block. JSP code evaluation, validation and compilation is done dynamically which means run time. This run time compilation is not getting repeated every time but only when any change to code happens. Java Developers should be aware of the thing that JSP syntax adds additional XML tags as a part of JSP action.