回 帖 发 新 帖 刷新版面

主题:[求助]HTTP Status 404问题,找不到JSP页面

操作系统:windows  2000  server
jdk:  jdk1.5  
tomcat:  tomcat5.5.9  
数据库:ms  sql  server  2000  
jdbc驱动:  SQL  SERVER  2000  driver  for  JDBC  
JSP连接测试通过,环境运行正常,在C盘新建bbs文件夹,把JSP文件复制到C:\bbs\,更改tomcat5\conf\server.xml为:

<!--    Define    the    default    virtual    host    -->
<Host    name="localhost"    debug="0"    appBase="webapps"
unpackWARs="true"    autoDeploy="true">    
<Context    path="/bbs"    docBase="C:\bbs"    debug="0"    />

访问http://localhost:8080/bbs,出现错误信息,说找不到文件路径,我在网上找了好几天的资料,但都不得其解,求解决办法!

HTTP Status 404 - /bbs/

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

type Status report

message /bbs/

description The requested resource (/bbs/) is not available.


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

Apache Tomcat/5.5.9

回复列表 (共7个回复)

沙发

你的文件是否放在了tomcat目录下的webapp里面了?检查一下tomcat配置

板凳

杠杠

3 楼

好像我也是这个问题呀

4 楼

Just put your bbs under tomcat/webapps directory, try again!

5 楼

试了一下,好像是这个问题,现在又有了新的问题
它出现在网页上面什么都没有,标题栏还是一些乱码

6 楼

这样试试:
<!--    Define    the    default    virtual    host    -->
<Host    name="localhost"    debug="0"    appBase="C:\bbs"
unpackWARs="true"    autoDeploy="true">    
<Context    path="/bbs"    docBase="."    debug="0"    />

7 楼

回复5楼,编码问题!!! 将CHARSET改成GB2312
<@% ............CHARSET=“GB2312”%> 

我来回复

您尚未登录,请登录后再回复。点此登录或注册