-2

HTTP 状态 404 - /项目/


类型状态报告

留言/项目/

描述 请求的资源 (/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

4

2 回答 2

0

您尚未在 web.xml 中定义 servlet 及其映射,以便服务器可以在您的 servlet 收到任何请求时调用其doGet或方法。doPost在你的 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 都会调用您的 servletdoGetdoPost方法。您应该查看此wiki 页面以获取有关 servlet 的基本知识

于 2012-11-01T11:03:35.813 回答
0

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

于 2012-11-01T11:04:06.330 回答