出错代码:
HTTP Status 404 - /--------------------------------------------------------------------------------type Status reportmessage /description The requested resource (/) is not available.

解决方案 »

  1.   

    我没回一重装一下TOMCAT就可以,等到再重启一下TOMCAY就出现上面的错误啦!
      

  2.   

    估计是你的web.xml中有错误
    请贴上来下
      

  3.   

    404 一般是路径不对 你看哈你那JSP文件的路径 
      

  4.   

    配置文件web.xml改下就可以了,或者加上:
      <error-page>
       <error-code>404</error-code>
       <location>/index.jsp</location>
      </error-page>
    当然了,其中index.jsp是你的主页文件名