Tagged Questions
0
votes
2answers
288 views
ArrayIndexOutOfBoundsException when trying to persist an ArrayList of Objects which utilise inheritence
I have 3 classes: Person, Car and Model.
Person has an ArrayList property defined:
List<Car> cars;
Car is an abstract class which class Model extends, I.e.
@PersistenceCapable
...
0
votes
1answer
138 views
java.lang.UnsupportedOperationException thrown when getObjectById() called
I have an entity with a Key set as follows:
KeyFactory.Builder keyBuilder = new KeyFactory.Builder(MyClass.class.getSimpleName(), "uniqueString");
Key = keyBuilder.getKey();
To fetch an entity by ...
0
votes
2answers
266 views
Problem deleting an entity which has a dependent “Set” Entity
I have a "Parent" entity which has a Set of "Child" entities, as follows:
class Parent {
@Persistent @Element(dependent = "true")
private Set<Child> children;
}
When I delete the "Parent" ...
1
vote
1answer
365 views
JDO - HashMap within an embedded Class
Are you able to store a HashMap within an embedded class on App Engine?
I have the following Class:
@Persistent(serialized = "true")
@Embedded
private Stats stats;
@PersistenceCapable
@EmbeddedOnly
...
1
vote
1answer
185 views
Persisting a Protocol Buffer Model with JDO on App Engine
we are building an Android app that communicates with a Java App Engine Server via Protocol Buffers. We use JDO as the persistence mechanism on the server.
My question is how to persist objects in ...
1
vote
3answers
715 views
JDO Exception in google app engine transaction
I am getting the following exception while trying to use transation in app engine datastore.
javax.jdo.JDOUserException: Transaction is still active.
You should always close your transactions ...