tomcat/webapps/chat
你要把chat   copy到
tomcat/webapps/Root
才行
也就是说你试试看吧

解决方案 »

  1.   

    http://localhost:8080/chat/login.jsp
    你如果想用这样的效果,你需要在server.xml中设置!
    你看看就知道了!
    你看那个example目录的设置
    另外拷贝到example目录下也可以!
    http://localhost:8080/example/chat/login.jsp
    而且你肯定会碰到中文的问题,哈哈!
      

  2.   

    server.xml
    <Context path="/chat" docBase="文件放的目录" debug="0"
                     reloadable="true" crossContext="true">
              <Logger className="org.apache.catalina.logger.FileLogger"
                         prefix="localhost_gt_log." suffix=".txt"
               timestamp="true"/>
            </Context>
    http://localhost:8080/chat/login.jsp
      

  3.   

    我自己做的应用,就直接拷贝到webapps/我的应用名/下面,运行后直接输入
    机器名:8080/我的应用名/   都可以的呀。我没有配置server.xml
    我只有在改端口的时候才会去配置server.xml
    我用的tomcat4.0,应用是JBuilder6做的。