I have a new 64-bit Ubuntu server with 4G of memory. I need to serve several (6 now, maybe 50 later) war files as their own context roots. (Similar apps from a commmon code base branded differently). I'm more comfortable with Jetty than Apache.
I can just drop the wars in /usr/share/jetty6/webapps.
But how can I add new ones without bouncing the server?
It seems like there should be a way to use the scanInterval feature from ContextDeployer (which works with exploded directories) and implement it for WebAppDeployer (for wars) - am I missing something obvious here?
If I just explode my own wars as I deploy, would that do the trick? (Is there a setting that does this?)
Thanks