0
votes
1answer
34 views

SerializationException while desalinization com.google.appengine.api.datastore.Key GWT

I have a RPC-Call : @Override public void onSuccess(Void result) { Window.alert("SuccessElse"); userService.getUser("103419018118650635943", new AsyncCallback<User>() { ...
1
vote
0answers
38 views

How to bypass JPA level2 cache for query and find

I'm using JPA2 with level2 cache enabled (jcache/memcache) on GAE. I have to run some update transactions and would like them to rely on datastore data and not the cached one. I tried to set the ...
1
vote
1answer
94 views

Find by multiple ids in datastore using jpa 2.0

Here is my JPA query: String jpql = "SELECT a FROM Account a WHERE a.id IN :list"; TypedQuery<Account> q = mgr.createQuery(jpql, Account.class); q.setParameter("list", list); return ...
3
votes
2answers
108 views

Got Null when querying datastore by key

I have two models, Book and Chapter, in a one-to-many relationship. I manually create the keys for both Book and Chapter. To persist, I create a book object then add an instance of chapter to it and ...
0
votes
0answers
32 views

trouble getting one-to-many relationship to work on app-engine and JPA

I have a one-to-many relationship between Book and Chapter. I am able to create a book object and add chapters to it successfully (I look in the datastore and see my creation). However, after a fetch ...
2
votes
1answer
55 views

Child entity identity (crisis) in JPA and app-engine

I have two models: Author and Book, where an author may have a list of books. To start with Author has a long @id and Book has a string @id. When I try to put data into the datastore, I get the error ...
2
votes
1answer
87 views

Using JPA2 to put data asynchronously to google datastore

I am using JPA2 @entity to represent my models. I need to put data asynchronously to the datastore. How would I do that? If a JPA Dao cannot do that, can I use AsyncDatastoreService on JPA entities -- ...
0
votes
1answer
53 views

GAE/J-JDO select by entity type returns outdated result

Investigating a problem for a while now. So asking the community. My aim is to fetch all entities of specific kind and they all need to be up to date. (not taking into account any transaction ...
0
votes
1answer
82 views

Error creating an entity in Google Datastore with JDO

I'm creating a web application in Google App Engine with JDO and I get a JDOFatalUserException: javax.jdo.JDOFatalUserException: Detected attempt to establish User(15) as the parent of ...
1
vote
0answers
68 views

GAE : rerun the enhancer and check for errors in the output

I know you must have a question saying its a duplicate question and has been answered. But I tried all the mentioned steps "Remove duplicate datanuc jar file (I never had a duplicate jar file) and ORM ...
0
votes
2answers
77 views

JDO MakePersistent overwrite previous entry

I am using JDO to store objects in GAE for a GWT project. I have a problem with the creation of new objects. It works great the first time I create an object. However the second time, it overwrites ...
1
vote
2answers
189 views

Does google app engine java datastore cache JPA query results?

I am using DN3 and GAE 1.7.4. I use JPA2 which according to the documentations by default has Level2 cache enabled. Here is my question: If I run a query that returns some objects, would these ...
0
votes
0answers
120 views

GAE JPA Polymorphic issue

I have this problem in dealing with polymorphic relationship in JPA below are my codes Place.class @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Key m_key; private String m_name; ...
1
vote
0answers
57 views

Datanucleus gae.pk-id not populated on makePersistent

When I make a class that defines both "gae.encoded-pk" and "gae.pk-id" persistent, the encoded-pk is updated, but the id remains null. There's no exception being thrown and the code is a straight copy ...
1
vote
1answer
161 views

Can only reference properties of a sub-object if the sub-object is embedded

I would like to retrieve data by the parent key with datanucleus on Google AppEngine. I use JPA. Here is my Stock bean (the parent): @Entity public class Stock implements Serializable { @Id ...
1
vote
0answers
99 views

GAE/JPA/DataNucleus: Strange exception while trying to persist entity (IllegalArgumentException: out of field index :-1)

I'm getting an exception after I added this embedded field in my entity: @Entity public class Team extends DataObject { @Embedded private TeamEvolution teamEvolution = new TeamEvolution(); ...
1
vote
0answers
161 views

Google App Engine/JPA: Strange behaviour using Embeddable class

I have an Embaddable class with a List<String> whose modifications are not being save unless I modify another field too. Please take a look at this to understand: @Embeddable public class ...
0
votes
1answer
145 views

AppEngine - JDO - a single call to a batch get query.execute(…) raises several datastore_v3.Get calls

I have implemented an AppEngine Java app. It runs just fine - except that i'm having way too many datastore read operations. So I installed the appstats tool to analyze it. It showed up that on a ...
0
votes
1answer
90 views

GAE JDO - What's the correct way to model these relationships?

I'm really trying to break out of my RDBMS mind set when setting up my models/entities. I have a laser focus on performance, so I want to do this right. I have three distinct things I need to model: ...
7
votes
4answers
857 views

Google App Engine JDO 3

Google just came out with JDO 3.0 (which uses DataNucleus 2.0) for Google App Engine, and I want to use it, since it conveniently supports unowned relationships. I've been trying for days, but I ...
3
votes
1answer
153 views

Using DataNucleus' list-ordering extension leads to empty list

So, I have an unidirectional one-to-many relationship where I want to keep the children in an ordered list. Since they already have an "index" property, I tried to follow the advice on ...
1
vote
1answer
233 views

Why doesn't my owned one-to-many relationship get persisted to the GAE datastore?

I have two classes defined and mapped to the GAE datastore - a Person class and a LocationStamp class, which represents a single latitude/longitude combination along with a timestamp. There is an ...
1
vote
1answer
440 views

How do I make a JDO query using contains()?

I have a class with an enum as instance variable: public enum Races { Human, Elf, Orc, Troll } @PersistenceCapable(detachable="true") public class Crafter { @PrimaryKey ...
0
votes
1answer
441 views

Why is java.lang.Long not persistable?

I am trying to query for a list of ids of type Long in GAE/JDO. And I'm getting the following exception when I call detachCopyAll() on the result set. ...
1
vote
1answer
153 views

Is is possible to do a batch update with JDO on Google Appengine?

I have an application on Appengine that updates multiple entities wihtin the same datastore transaction. The updates are done by calling the setters of the entities. I've set up the appstats tool to ...
0
votes
3answers
436 views

What dependencies are required for DataNucleus 3.0.0-release?

I'm trying to use datanucleus as JPA provider for GAE. This is my pom.xml (part of it): <dependency> <groupId>org.apache.geronimo.specs</groupId> ...
1
vote
1answer
80 views

How to auto-replace children entities with JDO?

As a follow up to this question, I have a parent entity that contains a collection of children entities. When updating the parent entity I would like to set the collection of children to the new ...
0
votes
2answers
2k views

Google App Engine Datanucleus enhencer

I have following class as superclass @Entity @MappedSuperclass public class Location implements LocationCapable { @Basic private Double latitude; @Basic private Double longitude; ...
1
vote
1answer
151 views

App Engine datastore get number of childs from multiple parents

I'm using the datastore of the Google App Engine (DataNucleus). I have two classes, one Chat and one Rating. A chat can be rated more then ones so I created an one-many relationship by adding a list ...
0
votes
1answer
186 views

Using ORDER By with DataNucleus Rest API and GAE Datastore

I'm successfully pulling back my objects however, I would like for them to already be sorted by a field in the object. I have this working: new ...
2
votes
1answer
60 views

What are the consequences of failing to close a query or persistence manager?

I see from every example for the appengine datastore that it is important to surround query executions, etc with try{}finally{} blocks to ensure that queries are always closed. What happens if a ...
2
votes
1answer
3k views

How to configure a Google Web Toolkit application with Datanucleus + PostgreSQL

I created an application using GWT and support for the Google Datastore but now i'm trying to move my application to my own server and i'm also trying to detach my app from Google App Engine and from ...
1
vote
1answer
132 views

IS DataNucleus GAE JPQL different from JPA1 standard?

Query q = em.createQuery("SELECT u FROM SSUser u WHERE u.emailId=?1") .setParameter(1, email); I thought this would be a valid query, but then I get: No results for query: SELECT FROM SSUser u ...
0
votes
2answers
596 views

Entity groups

I'm experimenting a bit with google app engine and the lack of a transaction di framework is missing. I'm implementing it as good as I can, but I'm hitting the same exception again and again: can't ...
2
votes
2answers
606 views

Appengine datastore phantom entity - inconsistent state?

Getting a weird error on java appengine code that used to work fine (nothing has changed but the data in the datastore). I'm trying to iterate over the results of a query and change a few properties ...
0
votes
1answer
425 views

Google DataStore not storing child objects

I have an entity Course that has a key to another entity (Document) inside. @PersistenceCapable(identityType = IdentityType.APPLICATION, detachable="true") public class Course{ @PrimaryKey ...
1
vote
5answers
3k views

DataNucleus Enhancer flakey?

I'm creating a GWT app in Google App Engine, and using Google data store. Does anybody else have the problem of the DataNucleus being flakey as all get out? I can save a class, and DataNucleus will ...