0

我精通servlet的东西。

我正在尝试在jsp的帮助下制作一个项目。我在 Eclipse 上创建了一个名为website的 Web 项目,然后复制了一些命令,例如jsp:include. 起初它运行正确,显示了所有上下文,但之后它只是给出了如下错误:

Http page not found

我不知道我做错了什么。我也没有对web.xml文件进行更改。我不知道该文件是否需要任何更改。

    <html><head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Yo</title>
<jsp:include page="Header.html"/>

</head>
<body>
<!--<div id="header" style="background-color:orange;width:1360px;height:120px">
<h1><style="margin-bottom:0;"><font size="72px" color="white" ><center>
UTTAR PRADESH TECHNICAL UNIVERSITY
</center></font></h1>
</div>-->
WebSite under contruction.
<table width="100%"  border="0" cellspacing="0" cellpadding="0" >
<tr>
<td width="15%"> <jsp:include page="LeftPanel.html"  flush="true"/>Left Panel </td>
<td width="70%" class="alignment">
    <table width="100%"  border="0" cellspacing="0" cellpadding="0" >
    <tr><td><jsp:include page="Header.html" flush="true"/></td>
    </tr>
    </table>
</td>
<!--<td width="15%"> <jsp:include page="RightPanel.html" flush="true"/>Right               Panel</td>-->
</tr>
</table>
</body>

这是我制作的版本,但它不起作用,甚至像下面这样的简单代码也没有正确部署。

 <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Watch Initial D live Online Free</title>
<jsp:include page="Header.html"/>
</head>
<body>
Hey Whats Up just Testing..
</body>
</html>
4

1 回答 1

0

我找到了它发生冲突并停止响应的原因。它与端口8080上的oracle 10g 服务器冲突, 所以我将端口切换到我的 apache tomcat 服务器的 80。现在它可以正常工作了。

于 2013-06-22T05:12:58.803 回答