0

I have an existing tomcat server running on my local machine that is being started from outside of eclipse. Is there a way to deploy my web app from eclipse to that tomcat instance without having eclipse trying to start that instance of tomcat?

Jeff Storey
  • 56,312
  • 72
  • 233
  • 406

1 Answers1

0

It's possible using ANT scripts in eclipse which will deploy war file into tomcat directory and tomcat will take care rest of the things.

For those ant scripts you can see this below links

How Apache Ant deploys .war file to Tomcat

http://www.coderanch.com/t/423905/tools/automate-deployment-war-Tomcat-through

Community
  • 1
  • 1