0
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.

Renjith
  • 3,274
  • 19
  • 39

2 Answers2

0

Ref does not have a method now(). You can see its signature here:

http://docs.objectify-appengine.googlecode.com/git/apidocs/com/googlecode/objectify/Ref.html

stickfigure
  • 13,458
  • 5
  • 34
  • 50
0

The correct method is

User user= ofy.load().type(User.class).filter("userName", userName).first().get();
Renjith
  • 3,274
  • 19
  • 39