Home >Java >javaTutorial >How to Deploy a WAR File to the Tomcat Root Context?
Deploying an Application at the Root in Tomcat
You've created a WAR file for your application and want to deploy it at the root level of your Tomcat server. Currently, your application's URL is http://localhost:8080/war_name/application_name.
Solution:
There are two options for deploying your application at the root:
Remove the ROOT Directory and Rename the WAR File:
This approach is simpler, but requires some cleanup in your Tomcat setup.
Configure Context Root in server.xml:
<Context path="" docBase="war_name" debug="0" reloadable="true"></Context>
This method is more elegant and allows you to specify the context root for your application without modifying the Tomcat setup.
The above is the detailed content of How to Deploy a WAR File to the Tomcat Root Context?. For more information, please follow other related articles on the PHP Chinese website!