Tomcat Deploy - Guide to deploying web applications on Apache Tomcat
To deploy an application onto Tomcat, you can either use the manager application or copy the file onto Webapps folder.
1. Using the manager application - to use the manager application ( make sure you have enabled the user and role for the manager application in tomcat-users.xml file )
Go to the Deploy section and select either the WAR file or an expolded directory of the web application.
Click on Deploy.
2. Deploying applications using file copy
Simply copy the application WAR file to the webapps folder. If the application already exists and this is an update, you should also delete the directory with the same name as the application in the webapps folder.
Tomcat will explode the WAR file and deploy the application. Depending on your Tomcat configuration, it may be necessary to restart Tomcat server some times for the deployment to happen.



