jsp

时间:2015-07-28 07:43:56

标签: jsp servlets http-status-code-404

<%@ 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上运行时找不到的资源 网址为http://localhost:8080/JspPractice/Clock.jsp JspPractice是项目的名称,Clock.jsp是jsp的名称。

1 个答案:

答案 0 :(得分:-1)

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