On Tue, Sep 21, 2004 at 02:10:42PM -0400, Shapira, Yoav wrote:
> For development, drop Apache httpd, drop the connectors, drop the notion
> of CATALINA_BASE. Simply install Tomcat x separate times to x separate
> directories, with nothing in common. That's it.
or, if your developers can deal with not restarting tomcat all the time
(or notifying the others when they do), then you can just install you app
to a separate path within a single tomcat instance and save the overhead
of extra tomcat instances.
If you're using the ant deploy task, it would look something like this:
<deploy url="http://${tomcaturl}/manager"
username="${manager_username}" password="${password}"
path="/yourapp.${username}"
war="yourapp.war"/>
You just have to give the developers access to the user that is running
tomcat. I have a script that uses sudo to restart it when needed. It
works reasonably well.
eric
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]