Deployment of war file on Tomcat
Is there a way to deploy a given war file on Tomcat server? I want to do this without using the web interface. Just copy the war file into the $TOMCAT_HOME/webapps/ directory. Tomcat will deploy the war file by automatically exploding it. FYI - If you want you can make updates directly to the exploded directory, which is useful for development. There are several ways to deploy a Tomcat webapp: Dropping into $CATALINA_HOME/webapps, as was already mentioned. Using your build scripts to deploy automatically via the manager interface (that comes with Tomcat). Here are the two ways for Maven : use