Wget Tomcat deploy

http://blog.denevell.org/tomcat7-manager-deploy-undeploy.html
http://p2p.wrox.com/servlets/40311-tomcat-restart-only-one-application.html

Python
https://github.com/kotfu/tomcat-manager

In tomcat 7 with these changes, i'm able to access myAPP at / and ROOT at /ROOT

<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

你可能感兴趣的:(Wget Tomcat deploy)