servlet WebServlet 注解 404错误
我用Myeclipse创建web project,名字叫IMooc后创建servlet,servlet自己写好了并生成了@WebServlet
但是启动后提示404 怎么回事呢?
访问http://localhost:8080/IMooc/TestServlet出错404
访问index.jsp(http://localhost:8080/IMooc/index.jsp)完全没问题
servlet具体如下:
@WebServlet(description = "Only For Test", urlPatterns = { "/TestServlet" })
public class TestServlet extends HttpServlet {...}//自己生成的什么都没写
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>IMooc</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>