I have a web application built using maven. It is built in the form of various projects that depend on each other - domain, dao, services, etc. I ran eclipse: eclipse in each of them to set up an eclipse environment. So now I have several projects in eclipse. This is my development.
I also created a tomcat package for the Operations guys, so I can just provide them with a zip file that they can extract and run the batch file to start the server. This zip file contains the military file that is mentioned in the <context> configuration for tomcat.
Also, for development purposes, I installed tomcat to run from eclipse. My goal is to deploy hot code every time the source changes. This is not happening at present because the class files are in the "target" folder (due to the maven directory structure). And tomcat looks at the war file (exploded structure, I mean ..)
How can I set up tomcat / eclipse environment to start hot code deployment?
-Thanks!
source share