Download
FAQ History |
![]() ![]() ![]() |
API
Search Feedback |
Web Application Life Cycle
A Web application consists of Web components, static resource files such as images, and helper classes and libraries. The Web container provides many supporting services that enhance the capabilities of Web components and make them easier to develop. However, because it must take these services into account, the process for creating and running a Web application is different from that of traditional stand-alone Java classes.The process for creating, deploying, and executing a Web application can be summarized as follows:
- Develop the Web component code.
- Develop the Web application deployment descriptor.
- Build the Web application components along with any static resources (for example, images) and helper classes referenced by the component.
- Package the application into a deployable unit.
- Deploy the application into a Web container.
- Access a URL that references the Web application.
Developing Web component code is covered in the later chapters. Steps 2 through 4 are expanded on in the following sections and illustrated with a Hello, World style presentation-oriented application. This application allows a user to enter a name into an HTML form (Figure 4-1) and then displays a greeting after the name is submitted (Figure 4-2):
![]()
![]()
The Hello application contains two Web components that generate the greeting and the response. This tutorial has two versions of the application: a servlet version called
hello1
, in which the components are implemented by two servlet classes,GreetingServlet.java
andResponseServlet.java
, and a JSP version calledhello2
, in which the components are implemented by two JSP pages,greeting.jsp
andresponse.jsp
. The two versions are used to illustrate the tasks involved in packaging, deploying, and running an application that contains Web components. If you are viewing this tutorial online, you must download the tutorial bundle to get the source code for this example. See About the Examples.
Download
FAQ History |
![]() ![]() ![]() |
API
Search Feedback |
All of the material in The Java(TM) Web Services Tutorial is copyright-protected and may not be published in other works without express written permission from Sun Microsystems.