0

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 を使用しており、プロジェクトの作成中に動的 Web モジュール バージョン 2.5 を選択しました。

4

1 に答える 1

0

どの URL にアクセスしようとしていますか? ... 試す

http://localhost:8080/<Include Your Project Name>/FileCounter
于 2012-12-30T13:11:08.973 に答える