为什么出现了404?
web.xml里面的代码是这样的
<?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>
JSP里面的代码是这样的
<!doctype html>
<html>
<head>
<title>我的第一个JSP页面</title>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
</head>
<body>
<h1></欢迎大家访问我的主页></h1>
</body>
</html>
访问猫脸页面都可以,但是访问JSP出现了404,这是咋回事啊?