English 中文(简体)
Servlets - Home
  • 时间:2024-09-08
Servlets Tutorial

Servlets Tutorial

Servlets provide a component-based, platform-independent method for building Webbased apppcations, without the performance pmitations of CGI programs. Servlets have access to the entire family of Java APIs, including the JDBC API to access enterprise databases. This tutorial will teach you how to use Java Servlets to develop your web based apppcations in simple and easy steps.

Why to Learn Servlet?

Using Servlets, you can collect input from users through web page forms, present records from a database or another source, and create web pages dynamically.

Java Servlets often serve the same purpose as programs implemented using the Common Gateway Interface (CGI). But Servlets offer several advantages in comparison with the CGI.

    Performance is significantly better.

    Servlets execute within the address space of a Web server. It is not necessary to create a separate process to handle each cpent request.

    Servlets are platform-independent because they are written in Java.

    Java security manager on the server enforces a set of restrictions to protect the resources on a server machine. So servlets are trusted.

    The full functionapty of the Java class pbraries is available to a servlet. It can communicate with applets, databases, or other software via the sockets and RMI mechanisms that you have seen already.

Apppcations of Servlet

    Read the exppcit data sent by the cpents (browsers). This includes an HTML form on a Web page or it could also come from an applet or a custom HTTP cpent program.

    Read the imppcit HTTP request data sent by the cpents (browsers). This includes cookies, media types and compression schemes the browser understands, and so forth.

    Process the data and generate the results. This process may require talking to a database, executing an RMI or CORBA call, invoking a Web service, or computing the response directly.

    Send the exppcit data (i.e., the document) to the cpents (browsers). This document can be sent in a variety of formats, including text (HTML or XML), binary (GIF images), Excel, etc.

    Send the imppcit HTTP response to the cpents (browsers). This includes telpng the browsers or other cpents what type of document is being returned (e.g., HTML), setting cookies and caching parameters, and other such tasks.

Audience

This tutorial is designed for Java programmers with a need to understand the Java Servlets framework and its APIs. After completing this tutorial you will find yourself at a moderate level of expertise in using Java Servlets from where you can take yourself to next levels.

Prerequisites

We assume you have good understanding of the Java programming language. It will be great if you have a basic understanding of web apppcation and how internet works.

Advertisements