Building Java HTTP Servlets
Building Java HTTP Servlets
To write the servlets described in this tutorial, you simply need an editing environment.
This can be as basic as an operating system editor. In a development environment,
many people use IDEs because they have debuggers and other features specific to
writing and testing code.
To compile the servlets, you'll need the Java compiler (javac.exe). You'll also need
the Java server development kit (JSDK), which is typically an extension to the JDK.
Most servers support servlets based on the JSDK Version 2.1. You can test your
servlets with a utility included in the JSDK. The JSDK 2.0 has a utility called
servletrunner, while JSDK 2.1 comes with a small HTTP server.
Navigation
Navigating through the tutorial is easy:
* Select Next and Previous to move forward and backward through the tutorial.
* When you're finished with a section, select the Main Menu for the next section.
Within a section, use the Section Menu.
* If you'd like to tell us what you think, or if you have a question for the author about
the content of the tutorial, use the Feedback button.
Contact
For questions about the content of this tutorial, contact the author, Jeanne Murray, at
jeannem@us.ibm.com. If you have problems running the servlets, a direct contact with
Barry Busler, at barrybusler@us.ibm.com, will get you a faster answer.
Jeanne Murray is on the developerWorks staff, a perch from which she cajoles others
to write servlets for tutorials. Thanks to past and present dWers Dan Amerson and
Barry Busler for their contributions. Jeanne's been with IBM in Research Triangle Park,
NC, for 12 years, where she's worked on software design and development projects
ranging from mainframes to miniature devices.
Because servlets are written in the Java programming language, they have access to
the full set of Java APIs. This makes them ideal for implementing complex business
application logic and especially for accessing data elsewhere in the enterprise. The
Java Database Connectivity (JDBC) API, which allows Java programs to access
relational databases (and is beyond the scope of this tutorial), is one example.
Because there are no graphics associated with servlets, access to the GUI Java APIs
(the AWT) is not relevant.
A single servlet can be invoked multiple times to serve requests from multiple clients. A
servlet can handle multiple requests concurrently and can synchronize requests.
Servlets can forward requests to other servers and servlets.
The server itself loads, executes, and manages servlets. The server uses a Java
bytecode interpreter to run Java programs; this is called the Java Virtual Machine
(JVM).
The servlet dynamically contructs the response using information from the client
request, plus data gathered from other sources if needed. Such sources could be other
servlets, shared objects, resource files, and databases. Shared resources, for example,
could include in-memory data such as instance or class variables and external objects
such as files, database connections, and network connections.
Servlets are loaded when they are invoked for the first time from a client. Alternatively,
they can be loaded when the application server is started; this is a configuration
decision.
The server must support the version level at which you've written your Java servlets.
Most servers support servlets written based on the Java Servlet Development Kit
(JSDK) Version 2.1. Many are starting to support Version 2.2, which is the latest
revision of the Java Servlet API Specification (Version 2.3 is under review).
The list of resources at the end of this tutorial includes some debuggers that support
servlets. You should become familiar with at least one of these debuggers; it can help
speed the development process and make life a whole lot easier.
* Portable across platforms and across different Web servers. Servlets enable
you to do server-side programming without writing to platform-specific APIs; the
Java Servlet API is a standard Java extension.
* Persistent. A servlet remains in memory once loaded, which means it can
maintain system resources -- such as a database connection -- between
requests.
* Efficient. When a client makes multiple calls to a servlet, the server creates and
loads the servlet only once. Each additional call performs only the business logic
processing. CGI processes are loaded with each request, which slows
performance. In addition, the JVM uses lightweight Java threads to handle servlet
requests, rather than a weighty operating system process used by CGI.
* Able to separate presentation from business logic. This makes it easier to split
a project into distinct parts for easier development and maintenance.
* Able to access a library of HTTP-specific calls and to benefit from the
continuing development of the Java language itself.
The Java Servlet API has two packages. javax.servlet contains classes to support
generic protocol-independent servlets, and javax.servlet.http includes specific
support for the HTTP protocol.
You may want to bring up the servlet package documentation (Version 2.2) in a
secondary browser window as you go through this section.
To write an HTTP servlet for use on the Web, use the HttpServlet class.
A servlet engine runs within the application server and manages the servlet. It loads
and initializes the servlet, passes requests and responses to the servlet and client,
manages multiple instances of a servlet, and acts as a request dispatcher. It destroys
the servlet at the end of its useful life. Servlets are unloaded and removed from
memory when the server shuts down.
The init method of the servlet performs the servlet initialization. It is called once for
each servlet instance, before any requests are handled. Example tasks performed in
the init method include loading default data or database connections.
Handling multithreading
When there are simultaneous requests to a servlet, the server handles each client
request by creating a new thread for each request. There is a single thread per
client/server request; this thread is used again and again each time the same client
makes a request to the servlet.
For example:
* A servlet is loaded by the Web application server. There is one instance of a
servlet object at a time, and it remains persistent for the life of the servlet.
* Two browser clients request the services of the servlet. The server creates a
handler thread, for each request, against the instance object. Each thread has
access to variables that were initialized when the servlet was loaded.
* Each thread handles its own requests. The server sends responses back to the
appropriate client.
Request/response handling
Note that the request/response handling done inside the servlet (with the
HttpServletRequest and HttpServletResponse objects) is different from the
request handling done by the Web server. The server handles communication with the
external entities such as the client by passing the input, then the output, to the servlet.
This servlet has little real function beyond simply demonstrating the functions of a
servlet, but don't worry, we'll get to some more complicated stuff in the next sections.
The image below shows the HTML page this servlet generates. The next few panels
walk you through the servlet code.
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
response.setContentType("text/html");
You can also view the code listing in the Appendix of this tutorial.
If you have the ability to execute your servlet on a server, compile the code and put the
class file in the servlet directory. Run the servlet using a URL with the following syntax.
Be sure to remember that the class file name is case sensitive.
http://host/path/SimplePrint
The image below shows the HTML page this servlet generates.
First add the import statements that give us access to other Java packages and
declare a new class called Quiz.
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
String [] questions =
{"What is a servlet?",
"Where does a servlet run?",
"The following are all true about servlets, except:",
"What is the Java Servlet API?",
"To write an HTTP servlet for use on the Web,"};
String [] [] possibleAnswers =
{
{ "A server-side Java software program that handles\
messaging between a client and server",
"A tiny little server",
"A Java program that serves dinner",
"A French word for napkin" },
The code for the doGet method reads the request data and gets the answers
submitted by the user. Because the parameters are strings, and we are using ints, we
need to call the static parseInt method and catch the appropriate exception. The code
also checks to make sure the quiz was submitted.
The getWriter method on the response object enables us to send character text to
the client.
In this servlet, doPost calls doGet.This is to ensure that if some program issues a
POST request to this servlet (which could alter data), the servlet will enact the doGet
method in response.
Next, print the quiz form. This code uses the FORM function to print each question. It
also checks to see whether the quiz was submitted (so it knows whether to grade it).
if (submit != null)
{
grade(output);
}
If you have the ability to execute your servlet on a server, compile the code and put the
class file in the servlet directory. Run the servlet using a URL with the following syntax.
Be sure to remember that the class file name is case sensitive.
http://host/path/Quiz
This type of servlet is useful for situations in which you want to get information about
what your users are doing, but don't have other means for doing so. For example,
some clients don't accept cookies, which are a method for storing data on the client
and analyzing user actions. The redirect servlet shown in this example does not
actually do any tracking (we're not really interested in tracking where you want to go
today).
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
response.sendRedirect(target);
}
The servlet checks whether referrer was specified as a parameter. If not, then it is set
to the empty string. For now, referrer is not used, but it could be logged to a file or a
database to accumulate session tracking information on a user.
The servlet checks whether a target is specified and, if not, throws the
IllegalArgumentException. We could check for more information on the target, such as
whether it starts with http, but for now existence is enough of a test.
You can also view the code listing in the Appendix of this tutorial.
If you have the ability to execute your servlet on a server, compile the code and put the
class file in the servlet directory. Run the servlet using a URL with the following syntax.
Be sure to remember that the class file name is case sensitive.
http://host/path/Redirect?target=http://java.sun.com/products/servlet/
Section 8. Summary
The next panel lists some resources for your next steps.
Resources
The Java Servlet API is available on servers through a variety of industry partners and
server vendors. The java.sun.com site lists servers and tools that support the API.
The Java servlet package documentation (Version 2.2) is the definitive source of
package, interface, and class definitions.
Java Database Connectivity (JDBC) technology is how the Java language works with
databases. To learn more about JDBC technology, take the JDBC technology tutorial
on developerWorks.
Developers are finding interesting ways to use servlets with XML. Read more in
Servlets and XML: Made for each other on developerWorks.
Here are some tools with debuggers and some stand-alone debuggers that support
servlets.
IDEs:
* Borland Inprise JBuilder
* IBM VisualAge for Java
* SilverStream Designer
* Forte for Java
* BEA's WebGain for WebLogic
* Tek Tool's Kawa
Visual Debuggers:
* MetaMata Debug
* Jikes Debugger
* IDEBUG - IBM Distributed Debugger
Your feedback
Please let us know whether this tutorial was helpful to you and how we could make it
better. We'd also like to hear about other tutorial topics you'd like to see covered.
Thanks!
For questions about the content of this tutorial, contact the author, Jeanne Murray, at
jeannem@us.ibm.com. If you have problems running the servlets, a direct contact with
Barry Busler, at barrybusler@us.ibm.com, will get you a faster answer.
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
/**
* This servlet is used to print a simple HTML page.
*/
/**
* This function handles HTTP requests
*/
public void service (HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException
{
// set content type and other response header fields first
response.setContentType("text/html");
}
}
Quiz.java
Here is the source for Quiz.java.
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
/**
* Quiz is a simple servlet that handles a
* GET request submitted from a form in a web browser.
* Quiz grades the form results and displays the results
* for the user.
*/
/**
* This method handles the GET request from the web browser.
*/
public void doGet(HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException
{
PrintWriter out = response.getWriter();
printHeader(out, response);
for (int k = 0; k < answers.length; k++)
{
try
{
// Get answers from the form submitted by the user
userAnswers[k] = (Integer.parseInt(request.
getParameter("answer"+k)));
}
catch (NumberFormatException nfe)
{
userAnswers[k] = 0;
}
}
// Checking to see if quiz was submitted.
submit = request.getParameter("submit");
printQuiz(out);
printClosing(out);
}
/**
* This method passes any POST requests to the doGet method.
*/
public void doPost(HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException
{
this.doGet(request, response);
}
/**
* Print the top portion of the HTML page.
* No dynamic content here.
*/
public void printHeader(PrintWriter output,
HttpServletResponse resp)
{
//Tell the browser what type of data we are sending.
resp.setContentType("text/html");
output.println("<HTML>\n" +
"<HEAD>\n" +
"<TITLE>Servlet Quiz</TITLE>\n" +
"</HEAD>\n" +
"<BODY BGCOLOR=\"#ffffff\">\n" +
"<H2>");
}
/**
* Prints the form for the Quiz.
*/
public void printQuiz(PrintWriter output)
{
output.println("Use the radio buttons to select " +
"your answers to the\nquestions below. " +
"Press the submit button to grade " +
"the quiz.\n" +
"</H2><FORM METHOD=\"GET\" ACTION=\"./Quiz\">");
/**
* Closes the HTML page.
*/
public void printClosing(PrintWriter output)
{
output.println("</BODY>\n" +
"</HTML>");
}
/**
* Prints questions from the question list.
*/
public void printQuestion(PrintWriter out,
int questionIndex)
{
out.println("<P>" + questions[questionIndex] + "<BR>\n");
for (int j = 0; j < possibleAnswers[questionIndex].length; j++)
{
out.println("<INPUT TYPE=\"radio\" NAME=\"answer" +
questionIndex +
"\" VALUE=\"" + (j+1) + "\">" +
possibleAnswers[questionIndex][j] +
"<BR>");
}
out.println("</P>");
}
/**
* Grades the quiz submitted by the user.
*/
public void grade (PrintWriter out)
{
out.println("<P><B><U>Answer Key</U></B><BR>");
for (int p = 0; p < answers.length; p++)
{
out.println((p+1) + ":");
if (answers[p] == userAnswers[p])
{
out.println("<FONT
");
}
else
{
out.println("<FONT COLOR=\"ff0000\">Incorrect. Try
</FONT><BR>");
}
}
}
}
Redirect.java
Here is the source for Redirect.java.
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
/**
* Redirect is a servlet that takes a target url and
* a referring origin as input and redirects the web
* browser to the target url.
*/
/**
/**
* This method passes all POST requests to the doGet() method.
*/
/**
* Method gets the referrer and target parameters from the request.
*/
public void getURLs(HttpServletRequest request)
{
referrer = request.getParameter("referrer");
if (referrer == null || 0 == referrer.length())
{
referrer = new String("");
}
target = request.getParameter("target");
Colophon
This tutorial was written entirely in XML, using the developerWorks tutorial tag set. The tutorial is converted into a
number of HTML pages, a zip file, JPEG heading graphics, and a PDF file by a Java program and a set of XSLT
stylesheets.