我正在尝试Objectify在 Eclipse 的 App Engine 项目中使用 Cloud Tools SDK。Objectify 的 GitHub wiki 的设置部分说:调用ObjectifyService.init()应用程序的引导程序;servlet 上下文侦听器是理想的。我发现的每个教程或问题都说同样的话,但 Eclipse 告诉我该ObjectifyService.init()方法不存在。下面的代码来自 Objectify GitHub wiki。public class Bootstrapper implements ServletContextListener { public void contextInitialized(ServletContextEvent event) { ObjectifyService.init(); //"The method init() is undefined for the type ObjectifyService" ObjectifyService.register(MyClass.class); } @Override public void contextDestroyed(ServletContextEvent sce) { // TODO Auto-generated method stub }}是否不再需要此调用?所有的教程,甚至看起来像官方文档的东西,都过时了吗?
添加回答
举报
0/150
提交
取消