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();