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

但 Eclipse 正在抱怨这一点The method now() is undefined for the type Ref<User>

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

4

2 回答 2

0

Ref 没有方法 now()。你可以在这里看到它的签名:

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

于 2013-09-19T07:23:16.200 回答
0

正确的方法是

User user= ofy.load().type(User.class).filter("userName", userName).first().get();
于 2013-09-19T08:45:46.787 回答