Reputation: 5628
I hate having to go to UI for Tomcat and re-deploy my application every time I do a compile. Is there a way I can do this while starting up the Tomcat
So something like startup.bat {-argument 'path to war file'}
Thanks in advance
Upvotes: 1
Views: 116
Reputation: 3914
You can solve this by copying the WAR file to $CATALINA_HOME/webapps
and Tomcat will automatically extract the WAR and redeploy it.
Upvotes: 1