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,
BookDetailsServletillustrates how to handle HTTPGETrequests,BookDetailsServletandCatalogServletshow how to construct responses, andCatalogServletillustrates 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. Thedatabasepackage also contains the classBookDetails, which represents a book. The shopping cart and shopping cart items are represented by the classescart.ShoppingCartandcart.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.waris provided in<INSTALL>/j2eetutorial14/examples/web/provided-wars/. To build the application, 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
asantbuild. 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.
To package and deploy the example using
asant, follow these steps:To learn how to configure the example, use
deploytoolto package and deploy it:
- Start
deploytool.- Create a web application called
bookstore1by running the New Web Component wizard. Select FileNew
Web Component.
- In the New Web Component wizard:
- Select the Create New Stand-Alone WAR Module radio button.
- In the WAR File field, enter
<INSTALL>/j2eetutorial14/examples/web/bookstore1/bookstore1.war. The WAR Display Name field will showbookstore1.- 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, andutilpackages. Click Add.- Add the shared bookstore library. Navigate to
<INSTALL>/j2eetutorial14/examples/web/bookstore/dist/. Selectbookstore.jarand click Add.- Click OK.
- Click Next.
- Select the Servlet radio button.
- Click Next.
- Select
BannerServletfrom the Servlet Class combo box.- Click Finish.
- Add the rest of the web components listed in Table 11-2. For each servlet:
- Select File
New
Web 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.HitCounterFilterandfilters.OrderFilter(described in Filtering Requests and Responses).
- Select the Filter Mapping tab.
- Click Edit Filter List.
- Click Add Filter.
- Select
filters.HitCounterFilterfrom the Filter Class column.deploytoolwill automatically enterHitCounterFilterin the Filter Name column.- Click Add Filter.
- Select
filters.OrderFilterfrom the Filter Class column.deploytoolwill automatically enterOrderFilterin the Filter Name column.- Click OK.
- Click Add.
- Select
HitCounterFilterfrom the Filter Name drop-down menu.- Select the Filter this Servlet radio button in the Filter Target frame.
- Select
BookStoreServletfrom the Servlet Name drop-down menu.- Click OK.
- Repeat for
OrderFilter. SelectReceiptServletfrom the Servlet Name drop-down menu.- Add a resource reference for the database.
- Select File
Save.
- 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 runningasantcreate-db_commonor 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.