当前位置: 代码迷 >> Eclipse >> 请问配置有关问题,tomcat的servlet-examples页面可以显示,小弟我自己做的Helloworld却报错
  详细解决方案

请问配置有关问题,tomcat的servlet-examples页面可以显示,小弟我自己做的Helloworld却报错

热度:209   发布时间:2016-04-23 18:53:26.0
请教配置问题,tomcat的servlet-examples页面可以显示,我自己做的Helloworld却报错
错误提示:
HTTP   Status   404   -   /HelloWorld/servlet/HelloWorld
--------------------------------------------
type   Status   report
message   /HelloWorld/servlet/HelloWorld
description   The   requested   resource   (/HelloWorld/servlet/HelloWorld)   is   not   available.

--------------------------------------------
Apache   Tomcat/5.0.27
请问怎么解决?

我使用的是tomcat5.5.20+Eclipse,插件是v31的,但是在Eclipse也还是可以启动和停止等,但就是没有很多教程上写的《右键HelloWorld   project,选择Tomcat   Project-> update   context   to   server.xml》这个
,web.xml配置如下

<servlet>
<servlet-name> HelloWorld </servlet-name>
<servlet-class> HelloWorld </servlet-class>
</servlet>
<servlet-mapping>
<servlet-name> HelloWorld </servlet-name>
<url-pattern> /servlet/HelloWorld </url-pattern>
</servlet-mapping>

我试过把.class文件拷到servlet-examples下面,然后在配置对应的web.xml可以看到自己写的,但是eclipse的却不行,我是用eclipse进行编译后复制过去的?谁来帮忙解决下,。还有谁可以登录www.sysdeo.com——
我怎么都上不去,所以只找到了一些老版本的tomcatPlugin,谁有eclipse3.2的可以发个邮件给我吗?我在线等,请短信联系我后给地址。

------解决方案--------------------
<servlet-class> HelloWorld </servlet-class>

Gai Cheng...

<servlet-class> net.csdn.HelloWorld </servlet-class>


------解决方案--------------------
点右键建立servlet,自动就在web.xml里面建立说明了
  相关解决方案