我在eclipse中新建了一个servlet,eclipse也自动加了如下标注
@WebServlet("/HelloWorld")
public class HelloWorld extends HttpServlet
但是启动tomcat7返回404,路径是http://localhost:8080/HelloWorld/。
这是为什么。
------解决方案--------------------
http://localhost:8080/HelloWorld/写错了,还要包括你的项目名称http://localhost:8080/项目名/HelloWorld/