jsp 中的 404(未找到资源)

404 (resource not found) in jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1" import="java.util.Date"%>
<!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>Clock</title>
</head>
<body>
    <p>
        The time is : <%=new Date()%>
    </p>
</body>
</html>

当我在 tomcat 上 运行 时代码显示找不到资源。
url 是 http://localhost:8080/JspPractice/Clock.jsp .
JspPractice 是项目的名称,Clock.jsp 是 jsp.

的名称

这段代码没有错误。这是服务器问题。请检查服务器的端口号,默认为8080。并重新启动 IDE .