我的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>