我有一个带有 objectify 数据库的 GAE 服务器。
我正在寻找一种将多行插入我的数据库的方法。我试图做这样的主要工作:
public static void main(String[] args) {
Objectify ofy = ObjectifyService.begin();
ofy.put(new MyWhateverObject("1"));
ofy.put(new MyWhateverObject("2"));
ofy.put(new MyWhateverObject("3"));
}
但我收到此错误:
Exception in thread "main" java.lang.NullPointerException: No API environment is registered for this thread.
我该怎么做??
重要提示:我不想使用 LocalServiceTestHelper 测试我的应用程序,我想真正将行插入到我的数据库中。
谢谢你。