google-app-enginegoogle-cloud-datastoreobjectifygae-eclipse-plugin

Objectify 4 throwing strange error in GAE


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

But eclipse is complaining that The method now() is undefined for the type Ref<User>.

I am using objectify4 with spring for a GAE project.


Solution

  • The correct method is

    User user= ofy.load().type(User.class).filter("userName", userName).first().get();