This looks like an absurd question but I am having problem with starting to code with Objectify v4 in appengine.
The introduction on objectify page says that you should use ofy to do all the operations. For this they have shown this to use
import static com.googlecode.objectify.ObjectifyService.ofy;
Thing th = ofy().load().key(thingKey).get();
Now the thing is in my eclipse auto suggestion it is not showing my ofy() thing. When I am importing the first line which I have written above it shows error.
I just want to know how to get ofy() to use?
Thanks