Tomcat上的“Servlet当前不可用”错误

时间:2012-09-24 03:01:38

标签: java-ee tomcat servlets web.xml

我正在尝试在Eclipse EE Juno中编写一个简单的Java EE应用程序。这是我项目的文件层次结构:

project file hierarchy

的index.jsp:

<jsp:forward page="/departments.do"/>

的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_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>UniBudget</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>
    <servlet-name>Do</servlet-name>
    <servlet-class>control.Controller</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>Do</servlet-name>
    <url-pattern>*.do</url-pattern>
  </servlet-mapping>
</web-app>

我得到的错误:

HTTP Status 503 - Servlet Do is currently unavailable

问题是:为什么会发生这种情况,我该如何解决?

1 个答案:

答案 0 :(得分:3)

请在您的网址格式中添加正斜杠。

<url-pattern>/*.do</url-pattern>