为什么修改完haha.jsp之后就报错了。web.xml也修改。
为什么修改完haha.jsp之后就报错了。web.xml也修改。
为什么修改完haha.jsp之后就报错了。web.xml也修改。
2016-02-14
haha里面的:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>我的第一个jsp网页</title>
</head>
<body>
<h1>欢迎大家访问我的网页。</h1>
<hr>
</body>
</html>
web里面的:
<?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">
<welcome-file-list>
<welcome-file>/haha.jsp</welcome-file>
</welcome-file-list>
</web-app>
根据视频里面的来操作了。
举报