当前位置: 代码迷 >> Java Web开发 >> description The requested resource (Servlet jsp is not available) is not availab解决思路
  详细解决方案

description The requested resource (Servlet jsp is not available) is not availab解决思路

热度:5086   发布时间:2013-02-25 21:16:23.0
description The requested resource (Servlet jsp is not available) is not availab
HTTP Status 404 - Servlet jsp is not available

--------------------------------------------------------------------------------

type Status report

message Servlet jsp is not available

description The requested resource (Servlet jsp is not available) is not available.



这是怎么个情况?之前的发布都可以,突然所有都不行了。

------解决方案--------------------------------------------------------
肯能是你访问的路径不对,你把访问路径改成根路径试试呢?就是直接输入:http://localhost:8080/就能访了!方法如下:
1.在你tomcat 目录下:D:\Program Files\apache-tomcat-5.5.31\conf\Catalina\localhost ,在这个localhost文件夹中建一个ROOT.xml(大写).
2.ROOT.xml内容如下:<Context path="/" docBase="E:/workspace/bs/webroot(磁盘下项目的webroot目录)" reloadable="false" crossContext="true"> </Context>
------解决方案--------------------------------------------------------
Vector<Goods> vector =db_goods.list_goods()
报的是空指针,而且是在23行,二十三行又只用到了vector,所以肯定是上面的语句没有取到值,你断点调一下看看,后台应该是返回null了吧?
  相关解决方案