Tomcat is a very popular web server/servlet container that can host Java web applications which are made up of servlets, JSP pages (dynamic content), HTML pages, javascript, stylesheets, images… (static content).                     

This article describes the most common ways about how to deploy a Java web application on Tomcat, include the followings:

    •          Copying web application archive file (.war).
    •           Copying unpacked web application directory.
    •           Using Tomcat’s manager application.
Suppose you have Tomcat installed on your development computer and have read/write permission on Tomcat’s installation directory.

Table of content:

 

What you need to know before begin

While working with deployment of Java web applications on Tomcat, you should prepare yourself with a strong grasp about the following stuff:

    •           $CATALINA_HOME: is an environment variable points to the directory where you installed Tomcat. For example, c:\Program Files\Apache Software Foundation\Tomcat 7.0 on Windows.
    •           $CATALINA_BASE: is an environment variable points to the directory of a particular instance of Tomcat (if you configure multiple instances of Tomcat). If this variable is not set explicitly, then it will be assigned the same value as $CATALINA_HOME.
    •           Web applications are put under $CATALINA_HOME\webapps directory.
    •           Document root: is the top-level directory of a web application, where all the resources (JSP pages, HTLM pages, Java classes, images…) that constitute that application are placed.
    •           Context path: is the name which is relative to the server’s address (i.e http://localhost) and represents the name of the web application. For example, if your web application is put under $CATALINA_HOME\webapps\MyWeb directory, it will be accessed by the URL http://localhost/MyWeb, and its context path is /MyWeb.
    •           WAR: is extension of a file that packs a web application directory hierarchy in zip format. WAR stands for Web ARchive. Java web applications are usually packed in WAR files for deployment. WAR files can be created by command line or an IDE like Eclipse.
    •           You must have a strong understanding of how a Java web application is organized in terms of directory layout and hierarchy structure.
    •           JAR libraries which are shared among web applications are put under $CATALINA_HOME\lib directory.
    •           Application-specific JAR libraries are put under web application’s WEB-INF\libdirectory.

 

The following picture depicts what we have said so far:

directory layout

 

Deploy method #1: copying Java web application archive file (.war)

In this method, the web application is packed as a WAR file. You may generate the WAR file using a tool or IDE like Eclipse, or someone just sent you the file.

    •           Copy the WAR file into $CATALINA_HOME\webapps directory.
    •           Restart the server. Whenever Tomcat is started, it will unpack the WAR file it found in the webapps directory and launch the application in that manner.
NOTE: Later if you want to update changes for the application, you must both replace the WAR file and delete the application’s unpacked directory, and then restart Tomcat.



 

Deploy method #2: copying unpacked Java web application directory

In this method, you have the web application in its unpacked form.

    •           Copy the application’s directory from its location into $CATALINA_HOME\webapps directory.
    •           Restart the server, the application is deployed with the context path is name of the directory you copied.
NOTE: If you want to update changes for the application, you must replace the corresponding files under its document root directory.

 

Deploy method #3: using Tomcat’s manager application

In this method, you can deploy the web application remotely via a web interface provided by Tomcat’s manager application. You must have user name and password to access this application. The manager application is installed by default, but not always. So be sure that it is installed with your version of Tomcat.

Using the manager application, you can:

    •           View a list of applications deployed on the server and their status.
    •           Start, stop and restart an individual application.
    •           Deploy a new web application either by uploading a WAR file or supplying a directory on the server.
    •           Undeploy an individual application.
By default, the manager application is deployed under context /manager, so to access it, type the following URL into your web browser’s address bar (the port number may vary, depending on your server’s configuration):

http://localhost:8080/manager

After supplying correct user name and password, you get into the following screen:

tomcat manager application

The list of deployed applications is shown at the top, scroll down a little bit to see the deployment section:

deployment section

As we can see, there are two ways for deploying a web application using the manager:

    •           Deploy directory or WAR file located on server.
    •           WAR file to deploy.
The former way is only suitable if the application’s WAR file or directory resides on the server and we have to know the URL. The latter way is easier in which we can pick up a WAR file and upload it to the server.

Click Browse button to pick up a WAR file and click Deploy button. For example we select StrutsFileUploader.warfile. As soon as the WAR file is uploaded to the server, it is unpacked into $CATALINA_HOME\webapps directory. The manager adds the newly deployed application to the list of applications:

newly deployed app

The newly deployed application – StrutsFileUploader, is up and running, without the need of restarting the server.

 

Access the deployed Java web application

Typically, a web application can be accessed by typing its context path follows the server’s IP/domain (including port number if any). For example, the StrutsFileUploader application above can be accessed in web browser by typing:

http://localhost:8080/StrutsFileUploader

Or we can access an individual application from the manager application by click on the context path (first column in the list of applications).

 

References:

                http://tomcat.apache.org/tomcat-7.0-doc/appdev/deployment.html

 

Other Tomcat Tutorials:


About the Author:

is certified Java programmer (SCJP and SCWCD). He started programming with Java in the time of Java 1.4 and has been falling in love with Java since then. Make friend with him on Facebook and watch his Java videos you YouTube.



Add comment

   


Comments 

#23user2023-02-02 01:46
improve your website like javatpoint
Quote
#22Nam2021-06-09 10:36
Hi Sakshi,
You can follow this guide: codejava.net/.../...
Quote
#21Sakshi2021-06-09 04:38
I use Apache tomcat 10, I try to upload war files via tomcat manager and follow this step, but still getting 404 not found.
Can you help me with this.
Quote
#20Julio2021-06-03 14:04
simple y claro. Gracias
Quote
#19Milo2021-04-11 23:27
Dear Nam Ha Minh,

Thanks for such tutorial.
Quote