Struts Server Deployment
From Software By Jeff
Starting with Struts - Setting Up Struts - Struts Webserver Configuration - Our Struts Classes - Our Struts Web Pages - Struts Server Deployment - Making Struts Projects in IDEs
Here we'll discuss how to deploy our stuff to Tomcat.
We've made an assumption when configuring the web server that Tomcat is the servlet container in use. We'll continue that assumption here. If you're using a different servlet container or application server, the onus is on you to alter this configuration to suit your environment.
Files
Assuming access is available directly to the directory of the Tomcat server, installation is easy. In the target directory, copy the JSP files and contents of the WEB-INF, and any other files as necessary to the correct path.
WAR
If the project is tidy, it can be archived in a Web Archive (or WAR) file. Depending on the configuration of the Tomcat server, the presence of a new WAR file may start an automatic deployment, or the deployment may need to be done via the Tomcat management plugins.
More Details Coming