|
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,
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, 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
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.
- 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 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, andutilpackages. Click Add.- Add the shared bookstore library. Navigate to
<INSTALL>/j2eetutorial14/examples/build/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 Display Name column.- Click Add.
- Select
filters.OrderFilterfrom the Filter Class column.deploytoolwill automatically enterOrderFilterin the Display Name column.- Click OK.
- Click Add.
- Select
HitCounterFilterfrom the Filter Name column.- Select Servlet from the Target Type column.
- Select
BookStoreServletfrom the Target column.- Repeat for
OrderFilter. The target type is Servlet and the target isReceiptServlet.- 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.
|
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.