我正在尝试在Eclipse中运行我的第一个Java Web应用程序,并且在最近几个小时内我遇到了这个错误。 http://localhost:8080/
工作得非常好,当我附加应用程序上下文时会出现错误。应用程序中的代码非常基本,只有两个简单的小文件web.xml和index.html
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
<display-name>SimpleServletProject</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>
<!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>Simple Web Application</title>
</head>
<body>
Simple Web Application says Hello!
</body>
</html>
请帮忙!