EXCEPTION java.lang.ClassNotFoundException: servlet - But the Servlet is present; And web.xml is absolutely correct
问题 Just created a brand new project with Eclipse June 4.2 Use Google App Engine SDK 1.7.4 Eclipse create a Servlet public class ClockServlet extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException { resp.setContentType("text/plain"); resp.getWriter().println("Hello, world"); } } and a simple web.xml <servlet> <servlet-name>Clock</servlet-name> <servlet-class>clock.ClockServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>Clock<