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项目。
答案 0 :(得分:0)
Ref现在没有方法()。你可以在这里看到它的签名:
http://docs.objectify-appengine.googlecode.com/git/apidocs/com/googlecode/objectify/Ref.html
答案 1 :(得分:0)
正确的方法是
User user= ofy.load().type(User.class).filter("userName", userName).first().get();