Servlet提供404(Eclipse + Tomcat)

时间:2012-12-30 12:58:41

标签: java eclipse tomcat

我在http://www.vogella.com/articles/EclipseWTP/article.html上学习Lars Vogel的教程,并且我遇到了404错误。 所以我在Eclipse中创建了一个Dynamic Web Project,然后根据教程创建了FileDao.java和FileCounter.java。 Eclipse为我生成了一个web.xml文件,这里是:

<?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_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>de.vogella.wtp.filecounter</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>
  <servlet>
    <description></description>
    <display-name>FileCounter</display-name>
    <servlet-name>FileCounter</servlet-name>
    <servlet-class>de.vogella.wtp.filecounter.servlets.FileCounter</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>FileCounter</servlet-name>
    <url-pattern>/FileCounter</url-pattern>
  </servlet-mapping>
</web-app>

我使用的是Tomcat 6.0,我在创建项目时选择了动态网络模块2.5版。

1 个答案:

答案 0 :(得分:0)

您尝试访问哪个网址? ...尝试

http://localhost:8080/<Include Your Project Name>/FileCounter