Download
FAQ History |
API
Search Feedback |
The Example Servlets
This chapter uses the Duke's Bookstore application to illustrate the tasks involved in programming servlets. Table 11-1 lists the servlets that handle each bookstore function. Each programming task is illustrated by one or more servlets. For example,
BookDetailsServlet
illustrates how to handle HTTPGET
requests,BookDetailsServlet
andCatalogServlet
show how to construct responses, andCatalogServlet
illustrates how to track session information.
The data for the bookstore application is maintained in a database and accessed through the database access class
database.BookDBAO
. Thedatabase
package also contains the classBookDetails
, which represents a book. The shopping cart and shopping cart items are represented by the classescart.ShoppingCart
andcart.ShoppingCartItem
, respectively.The source code for the bookstore application is located in the
<
INSTALL
>/j2eetutorial14/examples/web/bookstore1/
directory, which is created when you unzip the tutorial bundle (see Building the Examples). A samplebookstore1.war
is provided in<
INSTALL
>/j2eetutorial14/examples/web/provided-wars/
. To build, package, deploy, and run the example usingdeploytool
, follow these steps:
- Build and package the bookstore common files as described in Duke's Bookstore Examples.
- In a terminal window, go to
<
INSTALL
>/j2eetutorial14/examples/web/bookstore1/
.- Run
asant
build
. This target will spawn any necessary compilations and copy files to the<
INSTALL
>/j2eetutorial14/examples/web/bookstore1/build/
directory.- Start the Application Server.
- Perform all the operations described in Accessing Databases from Web Applications.
- Start
deploytool
.- Create a Web application called
bookstore1
by running the New Web Component wizard. Select FileNewWeb Component.- In the New Web Component wizard:
- Select the Create New Stand-Alone WAR Module radio button.
- In the WAR Location field, enter
<
INSTALL
>/j2eetutorial14/examples/web/bookstore1/bookstore1.war
.- In the WAR Name field, enter
bookstore1
.- In the Context Root field, enter
/bookstore1
.- Click Edit Contents.
- In the Edit Archive Contents dialog box, navigate to
<
INSTALL
>/j2eetutorial14/examples/web/bookstore1/build/
. Selecterrorpage.html
,duke.books.gif
, and theservlets
,database
,filters
,listeners
, andutil
packages. Click Add.- Add the shared bookstore library. Navigate to
<
INSTALL
>/j2eetutorial14/examples/build/web/bookstore/dist/
. Selectbookstore.jar
and click Add.- Click OK.
- Click Next.
- Select the Servlet radio button.
- Click Next.
- Select
BannerServlet
from the Servlet Class combo box.- Click Finish.
- Add the rest of the Web components listed in Table 11-2. For each servlet:
- Select FileNewWeb Component.
- Click the Add to Existing WAR Module radio button. Because the WAR contains all the servlet classes, you do not have to add any more content.
- Click Next.
- Select the Servlet radio button.
- Click Next.
- Select the servlet from the Servlet Class combo box.
- Click Finish.
- Set the alias for each Web component.
- Add the listener class
listeners.ContextListener
(described in Handling Servlet Life-Cycle Events).- Add an error page (described in Handling Errors).
- Add the filters
filters.HitCounterFilter
andfilters.OrderFilter
(described in Filtering Requests and Responses).
- Select the Filter Mapping tab.
- Click Edit Filter List.
- Click Add Filter.
- Select
filters.HitCounterFilter
from the Filter Class column.deploytool
will automatically enterHitCounterFilter
in the Display Name column.- Click Add.
- Select
filters.OrderFilter
from the Filter Class column.deploytool
will automatically enterOrderFilter
in the Display Name column.- Click OK.
- Click Add.
- Select
HitCounterFilter
from the Filter Name column.- Select Servlet from the Target Type column.
- Select
BookStoreServlet
from the Target column.- Repeat for
OrderFilter
. The target type is Servlet and the target isReceiptServlet
.- Add a resource reference for the database.
- Select FileSave.
- Deploy the application.
- To run the application, open the bookstore URL
http://localhost:8080/bookstore1/bookstore
.Troubleshooting
The Duke's Bookstore database access object returns the following exceptions:
BookNotFoundException
: Returned if a book can't be located in the bookstore database. This will occur if you haven't loaded the bookstore database with data by runningasant
create-db_common
or if the database server hasn't been started or it has crashed.BooksNotFoundException
: Returned if the bookstore data can't be retrieved. This will occur if you haven't loaded the bookstore database with data or if the database server hasn't been started or it has crashed.UnavailableException
: Returned if a servlet can't retrieve the Web context attribute representing the bookstore. This will occur if the database server hasn't been started.Because we have specified an error page, you will see the message
If you don't specify an error page, the Web container generates a default page containing the message
and a stack trace that can help you diagnose the cause of the exception. If you use
errorpage.html
, you will have to look in the server log to determine the cause of the exception.
Download
FAQ History |
API
Search Feedback |
All of the material in The J2EE(TM) 1.4 Tutorial is copyright-protected and may not be published in other works without express written permission from Sun Microsystems.