I need to serve several Java web applications on a single server instance, but add them dynamically to a specific URI. e.g. launch webapp to this context /user_1_app launch webapp to this context /user_2_app
I don't know what webserver to use, but I'm now investigating Jetty
Can I just drop the wars in /usr/share/jetty/webapps ?
But how can I add new ones without bouncing the server?
It have read about a way to use the scanInterval feature from ContextDeployer (which works with exploded directories) and implement it for WebAppDeployer (for wars)
Where can I get a guide to do so ?