可以到管理工具->服务中选取重新启动tomcat,这样速度比较快,不知道是否还有更好的方法

解决方案 »

  1.   

    我试验了,必须先remove,然后部署,再用ie看WAR有两种组织方式,一种是按一定的目录结构组织文件,一种是一个后缀为WAR的压缩包,因此它的部署方式也有两种:(1):在浏览器中输入:
    http://localhost:8080/manager/install?path=/examples&war=file:/c:\examples就会将按目录结构组织的WAR部署(2):如果输入
    http://localhost:8080/manager/install?path=/examples&war=jar:file:/c:\examples.war!/
    就会将按压缩包组织的WAR部署,注意此url后半部分一定要有!/号。部署后就可以用 http://localhost:8080/examples访问了。在浏览器中输入:http://localhost:8080/manager/remove?path=/examples就会撤销刚才部署的应用程序。四:综述
    见http://www.cwdn.net/article/appserver/tomcat.htm
      

  2.   

    先删除http://localhost:8080/manager/remove?path=/examples然后部署http://localhost:8080/manager/install?path=/examples&war=jar:file:/c:\examples.war!/