Advertisement
Home arrow Java Articles arrow Jsp Servlets arrow Understanding Java Servlets [ Tutorial ]
Understanding Java Servlets [ Tutorial ] E-mail
Written by sunil boricha   
Article Index
Understanding Java Servlets [ Tutorial ]
Part-2 Servlet architecture
Part-3 Write a simple Servlet
Part-4 Advanced Servlet example
Part-5 Servlet life cycle
Part-6 Web.xml configuration
Part-7 Servlet scope objects
Part-8 Session

This tutorial provides an understanding of Servlet Architecture and its life cycle. We explore a Servlet example coding write Web.xml configuration file and understand Servlet scope and Session.
Learning Objectives:

After completing this tutorial, you will be able to:
  •  Understand Servlet Architecture
  •  Know Servlet lifecycle and how to write Servlet
  •  Know Web.xml Configuration
  • Understand Servlet scope and Session

related links



Introduction

Servlets are Java technology’s answer to Common Gateway Interface (CGI) programming. They are programs that run on a Web server, acting as a middle layer between a request coming from a Web browser or other HTTP client and databases or applications on the HTTP server. Their job is to:

  • Read any data sent by the user. This data is usually entered in a form on a Webpage, but could also come from a Java applet or a custom HTTP client program.
  • Look up any other information about the request that is embedded in the HTTP request. This information includes details about browser capabilities, cookies, the host name of the requesting client, and so forth.
  • Generate the results. This process may require talking to a database, executing an RMI or CORBA call, invoking a legacy application, or computing the response directly.
  • Format the results inside a document. In most cases, this involves embedding theinformation inside an HTML page.
  • Set the appropriate HTTP response parameters. This means telling the browser what type of document is being returned (e.g., HTML), setting cookies and caching parameters, and other such tasks.
  • Send the document back to the client. This document may be sent in text format (HTML), binary format (GIF images), or even in a compressed format like gzip that is layered on top of some other underlying format.
Returning pre-built documents can satisfy many client requests, and the server would handle these requests without invoking servlets. In many cases, however, a static result is not sufficient, and a page needs to be generated for each request. There are a number of reasons why Web pages need to be built on the fly like this:

  • The Web page is based on data submitted by the user. For instance, the results page from search engines and order-confirmation pages at on-line stores are specific to particular user requests. The Web page is derived from data that changes frequently. For example, a weather report or news headlines page might build the page dynamically, perhaps returning a previously built page if it is still up to date.
  • The Web page uses information from corporate databases or other server-side sources.For example, an e-commerce site could use a servlet to build a Web page that lists the current price and availability of each item that is for sale.
  • In principle, servlets are not restricted to Web or application servers that handle HTTP requests, but can be used for other types of servers as well. For example, servlets could be embedded in mail or FTP servers to extend their functionality.


 

Sponsored

Login / Logout


//SPONSORED
© 2004-2009 Anil Kumar Kuchana SkillFox.com