1

我正在尝试在 eclipse Helios 中的 Tomcat v6.0.35 上运行一个简单的 Web 应用程序。当我尝试运行 servlet 时,我在浏览器上收到以下错误。

状态报告:“此 URL 不支持消息 HTTP 方法 GET”描述:“请求的资源不允许指定的 HTTP 方法(此 URL 不支持 HTTP 方法 GET)”这是我的 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>servletDemo</display-name>

<servlet-name>DemoServlet</servlet-name>
<servlet-class>com.lara.DemoServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>DemoServlet</servlet-name>
<url-pattern>/servletDemo.do</url-pattern>
</servlet-mapping>
</web-app>

这是 html 文件 index.html

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<form action="DemoServlet"method="post">
 <input type="submit" value="submit">
</form>
</body>
</html>

现在这是 DemoServlet.java

package com.lara;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

 public class DemoServlet extends HttpServlet 
{
private static final long serialVersionUID = 1L;      
   public DemoServlet() 
   {
    super();       
   }


protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException 
{
    PrintWriter pw=response.getWriter();
    System.out.print("1st appp demo...!!!");
}
}

我的文件夹结构是这样的...

在此处输入图像描述

类文件也进入 WEB-INF\classes 文件夹,并尝试进入具有不同映射样式的 web.xml,如 \servletDemo 和 index.html 等,但我的 servlet 没有在浏览器上运行,尽管索引文件正在运行浏览器..:(

4

1 回答 1

3

您的错误是因为您的 servlet 未实现doGet:尝试将doGet函数添加到类中。

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException 
{
    PrintWriter pw=response.getWriter();
    System.out.print("1st appp demo...!!!");
}
于 2012-04-30T06:16:44.363 回答