jsp页面正常工作时,Servrlet找不到404错误.. eclipse

时间:2019-02-25 10:17:51

标签: java xml eclipse servlets

我的servlet.java无法正常工作,但jsp文件正在工作时却出现404错误,所以问题不在于tomcat

我需要帮助,我的servlet类有什么问题,我没有给类仅添加一个打印语句就添加任何内容。this is my servlet path (hi.java)

这是我的xml文件

      <?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_4_0.xsd" id="WebApp_ID" 
version="4.0">
 <display-name>WEBAPPL</display-name>
  <servlet>
<servlet-name>NEW</servlet-name>
<servlet-class>HI</servlet-class>
 </servlet>
 <servlet-mapping>
<servlet-name>NEW</servlet-name>
  <url-pattern>/HI</url-pattern>
</servlet-mapping>
<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>             

0 个答案:

没有答案