Thursday, March 12, 2015

How to automatically deploy maven project from eclipse to tomcat

There are two plugins that combined together in Eclipse work quite well together to perform what you want:
  1. M2E: M2Eclipse which handles everything related to Maven.
  2. Eclipse Web Tool Platform (WTP): which handles everything Java EE related (Tomcat, JBoss, etc...)
For M2E to work properly with WTP, you need to add m2e-wtp. You may find several useful information as well as some good links here.
I would start from the Eclipse Java EE distribution (it includes already Eclipse-WTP) and then add M2E (either with their update site or through eclipse market place: look for M2E and M2E-WTP).
From there, you create a Web Project and you can run it on a Tomcat server. The first time you try to run you project on a server, you will install Tomcat and it will appear in view named "Server". Double click on the server to configure ports, automatic deployment etc...

No comments:

Post a Comment