HTTPStatus404-原始服务器未找到目标资源的当前表示,或不愿意透露该资源的存在

时间:2019-03-25 10:08:47

标签: apache servlets tomcat7 http-status-code-404

我正在尝试使用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

0 个答案:

没有答案