HTTP状态405 - 此URL不支持HTTP方法GET

时间:2012-12-29 23:09:57

标签: http java-ee tomcat http-status-code-405

我正在编写jsp-servlet应用程序并获得405 http-status。我找了很久但我无法理解我做错了什么。

我的应用服务器是Apache Tomcat-7.0.25。

我的JSP转发页

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<body>
   <jsp:forward page="/myservlet" />
</body>
</html>

我的servlet

public class MyServlet extends HttpServlet {

  private static final String url = "http://ibm.com";

  public void doGet(ServletRequest request, ServletResponse response)
       throws ServletException, IOException {

  URLConnection conn = null;
  URL connectURL = null;

  try {
    PrintWriter out = response.getWriter();
    connectURL = new URL(url);
    conn = connectURL.openConnection();
    DataInputStream theHTML = new DataInputStream(conn.getInputStream());
    String thisLine;
    while ((thisLine = theHTML.readLine()) != null) {
       out.println(thisLine);
    }
    out.flush();
    out.close();
   } catch (Exception e) {
    System.out.println("Exception in MyServlet: " + e.getMessage());
    e.printStackTrace();
   }
  }
}

我的部署描述符(web.xml)文件

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
      http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
       version="3.0">

   <display-name>My web application</display-name>
   <description>My servet application</description>

   <servlet>
       <servlet-name>MyServlet</servlet-name>
       <servlet-class>MyServlet</servlet-class>
   </servlet>

   <servlet-mapping>
       <servlet-name>MyServlet</servlet-name>
       <url-pattern>/myservlet</url-pattern>
   </servlet-mapping>

   <welcome-file-list>
       <welcome-file>index.html</welcome-file>
       <welcome-file>index.jsp</welcome-file>
   </welcome-file-list>

</web-app>

导致这种情况的原因是什么?如何解决这个问题?你有任何假设吗?

1 个答案:

答案 0 :(得分:1)

方法toGet()中的参数类型错误。它们应该是HttpServletRequestHttpServletResponse

@Override
public void doGet(HttpServletRequest request, HttpServletResponse response)

这些错误非常不愉快,因为它们不容易被发现。 所以不要忽视注释@Override。 使用它来避免不同的印刷错误和方法名称或其签名中的其他不幸误解。它会帮助你在编译时发现这些错误。