Remote Development Workflow with Tomcat and Eclipse
Posted
by Smithers
on Stack Overflow
See other posts from Stack Overflow
or by Smithers
Published on 2010-05-04T19:52:00Z
Indexed on
2010/05/04
19:58 UTC
Read the original article
Hit count: 258
Currently, I have tomcat installed on the production server to serve my java webapps. I develop in eclipse at my personal workstation and then I use an ant script to build the project into a war file and deploy that on the server.
This setup works well when I am on the same network as the server because deploying is almost instantaneous. However, now that I am working remotely uploading the war file to the server is slow and in most cases very redundant (there are about .5 GB of static media included in the war file).
Is there a better way to update my webapp on tomcat from eclipse and if so what are the best options for implementing such a solution with minimal effort?
© Stack Overflow or respective owner