http://blog.denevell.org/tomcat7-manager-deploy-undeploy.html
http://p2p.wrox.com/servlets/40311-tomcat-restart-only-one-application.html html
Python
https://github.com/kotfu/tomcat-manager
java
In tomcat 7 with these changes, i'm able to access myAPP at / and ROOT at /ROOT git
<Context path="" docBase="myAPP"> <!-- Default set of monitored resources --> <WatchedResource>WEB-INF/web.xml</WatchedResource> </Context> <Context path="ROOT" docBase="ROOT"> <!-- Default set of monitored resources --> <WatchedResource>WEB-INF/web.xml</WatchedResource> </Context>
Add above to the <Host> section in server.xml github