当前位置: 首页 > 知识库问答 >
问题:

java.lang.NoSuchMethodError:javax.servlet.http.HttpServletRequest.IsAsyncStarted

陆建木
2023-03-14

我一直在尝试运行一个简单的动态Web项目,并得到一个HTTP 500内部服务器错误,我不确定如何读取输出以了解需要做什么来补救这种情况。

运行项目时控制台的输出(运行index.htm时相同):

正在端口8080上启动预览服务器

模块:HelloWorld(/HelloWorld)

我使用的是Eclipse和Java1.8.0_71的最新版本

import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;


public class HelloWorld extends HttpServlet {

    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException
    {
        response.setContentType("text/html");
        PrintWriter out = response.getWriter();
        out.println("");
        out.println("");
        out.println("Hello World!");
        out.println("");
        out.println("");

}
}
<!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>
<a href="HelloWorld">Execute</a>
</body>
</html>

为了确保我也会发布web.xml文档

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>HelloWorld</display-name>
    <servlet>
        <description>
        </description>
        <display-name>HelloWorld</display-name>
        <servlet-name>HelloWorld</servlet-name>
        <servlet-class>HelloWorld</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>HelloWorld</servlet-name>
        <url-pattern>/HelloWorld</url-pattern>
    </servlet-mapping>
    <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>
</web-app>

共有1个答案

阚砚文
2023-03-14

老实说,前几行信息:不支持/helloworld的JSP,

由于您用路径/helloword映射了HelloWorld Servlet,因此必须创建一个相应的JSP来修复这个错误。

利用Servlet创建Web视图是可能的,但这是一个MVC模型,Servlet和JSP作为控制器和视图。您不应该在控制器内进行视图操作。

对于isAsyncStarted没有这样的方法,您确定使用的API级别正确吗?要使用这种方法,您必须使用3.0版本,而不是web.xml文件中所述的2.4版本。

 类似资料:

相关问答

相关文章

相关阅读