How can I automatically read a Entity (com.google.appengine.api.datastore.Entity) into a object using GoogleAppEngine Low Level API?
There is no magic way?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The Low Level API doesn’t provide entity mapping – it just exposes a dict-like interface. If you want mapping, you need to use JDO, JPA, or a third-party library like Objectify. Personally I’d suggest Objectify as the obviously superior choice.