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 项目。
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 项目。
Ref 没有方法 now()。你可以在这里看到它的签名:
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();