Objectify 4在GAE中抛出奇怪的错误

时间:2013-09-18 09:26:51

标签: google-app-engine google-cloud-datastore objectify gae-eclipse-plugin

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项目。

2 个答案:

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