我正在尝试使用servlet n jsp学习制作Web应用程序并能够启动apache tomcat服务器,但是我无法运行任何servlet脚本并出现以下错误
HTTP状态404 –找不到 说明原始服务器找不到目标资源的当前表示,或者不愿意透露其存在。
web.xml
<display-name>WebApp01</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>
<servlet>
<servlet-name>MyServlet</servlet-name>
<servlet-class>com.srv.pkg.Myservlet</servlet-class>
</servlet>
</web-app>
我已经尝试过这种方法,并且能够启动服务器,但是不能运行任何servlet脚本。 TOMCAT - HTTP Status 404