views:

66

answers:

2

I'm deploying a simple Java app to Google App Engine.

I have a simple JPA Entity containing a Key as my generated ID.

import javax.persistence.*;    

@Entity
public class MyEntity
{
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)    
    private com.google.appengine.api.datastore.Key key;
...

Once I persisted this object. I can view the key's ID like so...

long id = entity.getKey().getId();

Do you know how I can I use the same Id to get my entity back? Something like this...

Query query = em.createQuery("SELECT e FROM MyEntity e WHERE e.key.id = :myId");
query.setParameter("myId", id);

The above doesn't work. I know I can get it back by passing in the Key as the parameter, but I'd like to know if I could use the long id instead.

A: 

Found the solution, create a Key using the KeyFactory and pass in the ID. Then Query on Key.

Key key = KeyFactory.createKey(MyEntity.class.getSimpleName(), id);
+1  A: 

There's no need to do a query at all, as the datastore natively supports fetching an entity by its key, which is substantially faster than doing a query. See this section of the docs.

Nick Johnson
Can you help provide a JPA example of this? It looks like PersistenceManager is only for JDO.
JPA is documented here: http://code.google.com/appengine/docs/java/datastore/usingjpa.html
Nick Johnson
Thanks Nick, unfortunately that page doesn't tell me how to do a fetch with its key without using a query.