我的计算机上安装了jdk1.5.0_04和tomcat server 1.0.16。 在我的计算机上,servlet正在命令提示符下正确编译,但是在浏览器上执行servlet并使用以下url:http://localhost:8080/webdir/servlet/helloworld。 它给出了如下错误: HTTP状态404 - / servlet / webdir / helloworld
输入状态报告
message / servlet / webdir / helloworld
description请求的资源(/ servlet / webdir / helloworld)不可用。 Apache Tomcat / 6.0.16
答案 0 :(得分:0)
请您仔细检查一下您的部署描述符(web.xml)?它应该看起来像这样:
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<servlet>
<servlet-name>ServletExample</servlet-name>
<servlet-class>com.sarath.kumar.sivan.ServletExample</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>ServletExample</servlet-name>
<url-pattern>/ServletExample</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file> /pages/form.html </welcome-file>
</welcome-file-list>
</web-app>
你的.html页面应该是这样的:
<form method="POST" action="ServletExample">