我使用eclipse和tomcat并按照本教程创建了一个动态Web项目:
https://o7planning.org/en/10169/java-servlet-tutorial
我遵循了所有步骤,直到第一次运行代码以显示“ Hello,World!”。在网页上,但出现以下错误。我已经正确添加了index.html。
可能是什么问题?昨天,我在与运行简单项目相同的工作空间中创建了另一个动态项目,但是它也不起作用。可能是端口问题吗?
HTTP状态404 –找不到
类型状态报告
消息/ ServletFirstTutorial /
描述原始服务器找不到目标资源的当前表示,或者不愿意透露该资源的存在。
Apache Tomcat / 9.0.14
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>ServletFirstTutorial</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>