Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remote deploy Tomcat webapp from Eclipse

Tags:

For development and testing purposes I'd like to deploy my webapp from within eclipse to a remote tomcat server. Is this possible ? If not, how should I set up my development environment for smooth and easy remote deployment ?

like image 854
leeeroy Avatar asked Nov 19 '09 01:11

leeeroy


People also ask

How do you deploy a Java Web application?

To deploy a web application, click Server Configuration and then click the Virtual Servers tab. Select the virtual server in which you will need to deploy the web application. Click the Web Applications tab > New button. Specify the web application package.


1 Answers

If you can access the Tomcat manager application remotely then you can use the Tomcat Ant tasks or Tomcat Maven plugin to handle this. Both of these can then be called from within Eclipse.

Using either Ant or Maven also gives you the advantage of being able to deploy from outside of Eclipse. In my experience separating deployment from the IDE is helpful (our sysadmins don't run Eclipse!).

My personal choice is Maven, but Ant is equally capable in this area. I also use Maven profiles to let me easily switch between local/remote deployment (different server, passwords, etc).

like image 146
Chris Harcourt Avatar answered Oct 04 '22 18:10

Chris Harcourt