Objectify NoClassDefFoundError
问题 So I just created a new GAE project in Eclipse Indigo using the Google Eclipse Plugin, and I only have the following servlet: public class TestServlet extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException { resp.setContentType("text/plain"); resp.getWriter().println("Hello, world"); Objectify obj = ObjectifyService.begin(); System.out.println(obj); } } But when I run the servlet on my browser I get: java.lang.NoClassDefFoundError: com