我正在尝试使用 WTP 插件从 Eclipse 在 Tomcat 上部署一个 servlet。Eclipse 工作正常,Tomcat 也启动了。当我打开http://localhost:8080时,我得到了 Tomcat 的主页。我正在关注这个确切的教程http://www.vogella.com/articles/EclipseWTP/article.html但是当我尝试通过右键单击 servlet 类并将其部署在 tomcat 上并在服务器上运行时出现以下错误。请求的资源 (/test/FileCounter) 不可用。我搜索但找不到任何可以帮助我的东西。我正在使用 Eclipse Java EE IDE 和 Tomcat 6。以下是我的 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>test</display-name>
<servlet>
<description></description>
<display-name>FileCounter</display-name>
<servlet-name>FileCounter</servlet-name>
<servlet-class>com.servlets.FileCounter</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>FileCounter</servlet-name>
<url-pattern>/FileCounter</url-pattern>
</servlet-mapping>
</web-app>