<!DOCTYPE HTMLPUBLIC"-//W3C//DTDHTML4.01Transitioal//EN"
"http://www.w3.org/TR/html14/loose.dtd">
<html>
<head>
<title>我的第一个jsp页面<title>
<meta name="Generator" content="EditPlus">
<meta name="Autor" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
</head>
<body>
<h1>欢迎大家来访问我的主页</h1>
<hr>
</body>
</html>
这是index.jsp的
<?xml version="1.0" encoding="ISO-8859-1"?>
<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"
metadata-complete="true">
</web-app>
这是web记事本的
HTTP Status 404 - /myhome/index.jsp
type Status report
message /myhome/index.jsp
description The requested resource is not available.
Apache Tomcat/7.0.67
这是打开以后的网页。
1 回答
幽凝
TA贡献21条经验 获得超8个赞
在web.xml里 加上
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
试试
添加回答
举报
0/150
提交
取消