You are on page 1of 2

Document Information

Preface

Part I Introduction Your choices regarding cookies on this site


1. Overview
2. Using the Tutorial Examples

Part II The Web Tier


The Java EE 5 Tutorial
By using our sites, Oracle and our third party partners may use cookies and similar technologies to collect user data for the following purposes:
3. Getting Started with Web Applications
4. Java Servlet Technology
Home | Download
required cookies are necessary for the site| to
PDF | FAQ for
function, | Feedback
example, to remember your log-in details and provide secure log-in
What Is a Servlet?
The Example Servlets functional cookies help us to optimize the site, for example, to collect statistics, to save your preferences for social interactions or to enable you
Troubleshooting Duke's Bookstore Database Problemsto post comments on our site

Servlet Life Cycle advertising cookies allow Oracle and our third party partners to provide you with interest-based advertising and tailored content across your
Handling Servlet Life-Cycle Events browsers and devices Initializing a Servlet
Defining the Listener Class After the web container loads and instantiates the servlet class and before it delivers requests from clients, the web container initializes the servlet. To customize this
Specifying Event Listener Classes Please visit our privacy policy forprocess to allow the servlet to read persistent configuration data, initialize resources, and perform any other one-time activities, you override the init method of the
more information.
Servlet interface. A servlet that cannot complete its initialization process should throw UnavailableException.
Handling Servlet Errors

Sharing Information Accept all All the servlets


Decline all thatchange
View and access the bookstore
cookie database (BookStoreServlet, CatalogServlet, BookDetailsServlet, and ShowCartServlet) initialize a variable in
preferences
Using Scope Objects their init method that points to the database access object created by the web context listener:
Controlling Concurrent Access to Shared Resources
public class CatalogServlet extends HttpServlet {
Accessing Databases
private BookDBAO bookDB;
public void init() throws ServletException {
Initializing a Servlet
bookDB = (BookDBAO)getServletContext().
Writing Service Methods getAttribute("bookDB"); Privacy Policy | Powered by
Getting Information from Requests if (bookDB == null) throw new
Constructing Responses UnavailableException("Couldn’t get database.");
}
Filtering Requests and Responses
}
Programming Filters
Programming Customized Requests and Responses
Specifying Filter Mappings

Invoking Other Web Resources


Including Other Resources in the Response
Transferring Control to Another Web Component Copyright © 2010, Oracle and/or its affiliates. All rights reserved. Legal Notices

Accessing the Web Context


Maintaining Client State
Accessing a Session
Associating Objects with a Session
Notifying Objects That Are Associated with a Session

Session Management
Session Tracking

Finalizing a Servlet
Tracking Service Requests
Notifying Methods to Shut Down
Creating Polite Long-Running Methods

Further Information about Java Servlet Technology

5. JavaServer Pages Technology


6. JavaServer Pages Documents
7. JavaServer Pages Standard Tag Library
8. Custom Tags in JSP Pages
9. Scripting in JSP Pages
10. JavaServer Faces Technology
11. Using JavaServer Faces Technology in JSP Pages
12. Developing with JavaServer Faces Technology
13. Creating Custom UI Components
14. Configuring JavaServer Faces Applications
15. Internationalizing and Localizing Web Applications

Part III Web Services


16. Building Web Services with JAX-WS
17. Binding between XML Schema and Java Classes
18. Streaming API for XML
19. SOAP with Attachments API for Java

Part IV Enterprise Beans


20. Enterprise Beans
21. Getting Started with Enterprise Beans
22. Session Bean Examples
23. A Message-Driven Bean Example

Part V Persistence
24. Introduction to the Java Persistence API
25. Persistence in the Web Tier
26. Persistence in the EJB Tier
27. The Java Persistence Query Language

Part VI Services
28. Introduction to Security in the Java EE Platform
29. Securing Java EE Applications
30. Securing Web Applications
31. The Java Message Service API
32. Java EE Examples Using the JMS API
33. Transactions
34. Resource Connections
35. Connector Architecture

Part VII Case Studies


36. The Coffee Break Application
37. The Duke's Bank Application

Part VIII Appendixes


A. Java Encoding Schemes
B. About the Authors

Index
Cookie Preferences | Ad Choices

You might also like