Java Server Page

JSP Projects

JSP Project

adplus-dvertising
Brief history of JavaServer Page(JSP)
Previous Home Next

Java Server Page(JSP) is created by Sun Microsystems release at 1990 in completion with PHP and ASP. This is an exciting new technology and platform independent, that provides powerful and efficient creation of dynamic content, It totally based upon the Java technology that helps software developers which serve dynamically generated web pages based on HTML, XML, or other document types. JSP syntax is complete dependable upon two basic content likes: scriptlet elements( written in java code ) and markup( with HTML or XML).

There are two types of JSP

  1. Static web page: In the Static web page, the client request for any web page from the server, and server replica the same page that exist on server, under normal condition the page should be unchanged. Traditional web page contain static web content, whenever multiple client request for same page they all receive the same result.
  2. Figure-1: Show the Generated static web page

  3. Dynamic web page: The Web pages which is create at the time they are requested by a single or multiple user, able to changing content based on specified criteria. Today, all the Web page contain dynamic property like a running time, date, calendar these web page handle data dynamic. Dynamic data is very important for Web, from ticket reservation to online banking. Generally, Dynamic pages are generated by an application on the server, receiving input from the client, and responding appropriately.
  4. Figure-2: Show the Generated dynamic web page

Previous Home Next