发步网页
  直接在webapps下建立1个目录加入WEB-INF\web.xml文件即可。无需配置server.xml文件

解决方案 »

  1.   

    to: zlfh(千江月) 
     那样不行的
      

  2.   

    在server.xml的最后找到下面这段:
            <!-- Tomcat Root Context -->
            <!--
              <Context path="" docBase="ROOT" debug="0">
            -->然后紧接着添加下面这行:
    <Context path="/MYAPP" docBase="C:\myapp" debug="0" reloadable="true"/>添加好后和起来就是:
            <!-- Tomcat Root Context -->
            <!--
              <Context path="" docBase="ROOT" debug="0">
            -->
    <Context path="/MYAPP" docBase="C:\myapp" debug="0" reloadable="true"/>
    这个问题我刚刚解决,多亏了ZCJL大哥的帮助 :)