在 GAE 中对象化 4 个奇怪的错误


Objectify ofy = objectifyFactory.begin();
        User user= ofy.load().type(User.class).filter("userName", userName).first().now();

但日食抱怨The method now() is undefined for the type Ref<User>.

我正在将 objectify4 与 spring 用于 GAE 项目。

Ref 现在没有方法()。您可以在此处查看其签名:

http://docs.objectify-appengine.googlecode.com/git/apidocs/com/googlecode/objectify/Ref.html

正确的方法是

User user= ofy.load().type(User.class).filter("userName", userName).first().get();

相关内容

  • 没有找到相关文章

最新更新