eclipse中的servlet执行错误

时间:2012-11-01 10:43:40

标签: java

HTTP状态404 - / Project /


输入状态报告

消息/项目/

description请求的资源(/ Project /)不可用。


Apache Tomcat / 7.0.16

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee  http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>Project</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>

这是eclipse中自动生成的web.xml

2 个答案:

答案 0 :(得分:0)

您尚未在web.xml中定义servlet及其映射,以便服务器可以在您的servlet发出任何请求时调用其doGetdoPost方法。 在web.xml中添加它 注释描述了每个标记的用法。您可以从每个代码中删除<!-- ..... -->部分

<servlet>
<servlet-name>myservlet</servlet-name>  <!-- You can give any name -->
<servlet-class>com.abu.MyFirstServlet</servlet-class> Your servlet class's fully qualified name
</servlet>

<servlet-mapping>
<servlet-name>myservlet</servlet-name> the name that you mentioned in the above tag
<url-pattern>/index.html</url-pattern> the url for which the request must be sent to the servlet.
</servlet-mapping>

这意味着无论何时键入http://localhost:8080/YourPorject/index.html,conatiner都会调用您的servlet的doGetdoPost方法。你应该看看这个wiki page for gaining basic knowledge about servlets

答案 1 :(得分:0)

您需要将一个文件放在上面列表的根目录中。