JSP
Example JSP Web Application
This section will cover all of the code required to produce a sample web application. You’ll look at all of the code required to put together a simple web application as well as the information needed to deploy the completed application to a web container (in this example, Tomcat 5.0).
The Store
The example […]
Deploying Java Servlet-Based Web Applications
In this section, you’ll look at the deployment of Java servlet-based web applications. You’ll focus on the deployment of servlets. You may have noticed the phrase deployment descriptor or the file name web.xml and wondered what they were. The deployment descriptor (web.xml) file is perhaps the single most important item of […]
HTTP Servlets
HTTP Servlets
As we have mentioned, the javax.servlet package provides generic interfaces and classes to service clients’ requests independent of the protocol used. This means that any behavior that is specific to a particular package has to be implemented by the developer within the application. For this reason the javax.servlet package […]
