0
votes
1answer
26 views

AppEngine Memcache throwing IllegalArgumentException: Cannot use as value

I'm trying to get a Google App Engine application using Memcache to work effectively with Spring cache / Spring Data. I've implemented the Spring Cache and CacheManager interfaces by creating a ...
0
votes
1answer
26 views

selecting few properties from entity in endpoint point class

I am trying to modify a standard select query in my endpoint class to fetch selected fields from my entity. However even after changing the query, I see that my query result is fetching all the ...
0
votes
1answer
16 views

Google app engine JUnit4 test is unable to find a default provider for creating the EntityManager

Trying to get work a JUnittest in a Google-App-Engine Eclipse-Environment Unittest is testing a Class handling JPA Entities by getting an Entitymanager. In the "Class under Test" following call ...
0
votes
1answer
27 views

AppEngine - JPA - simple OneToMany and ManyToOne relation does not work

I have a simple relation: a category class, which contains zero to n questions a question class, which belongs to a category I'm just trying to set the relations and creating a category and ...
0
votes
2answers
42 views

id cannot be zero error while inserting new entity

I am trying to insert a new entity in app engine datastore using JPA. I am getting the error below. Can someone please suggest what could be wrong. java.lang.IllegalArgumentException: id cannot be ...
0
votes
1answer
34 views

setting own Key in Entity while using app engine

I am using eclipse to create a app engine based application where I am also using app engine datastore(using JPA) using endpoints. I wrote a test application with help from ...
0
votes
1answer
44 views

StackOverFlowError while doing a One-To-One relationship in GAE Datastore using JPA 2.0

I have two tables Folder & VirtualSystemEntry I tried to follow this Dataneclous Turorial but it always results with StackOverFlowException here what I tried so far Folder.java @Entity public ...
0
votes
0answers
50 views

Error querying entites by date

I'm trying to execute a query, which selects all entities older than 1 day: @Entity public class Foo { // other stuff @Temporal(TemporalType.TIMESTAMP) private Date myDate; // ...
0
votes
0answers
27 views

GAE - Google App Engine Cron Job Erratic behaviour, Thread issue

So I have a gae application with persistence using JPA 2.0 (the latest with Datanucleus as provider), I persist a Message object and keep a column 'hashCode' to save the hash for this message. I ...
1
vote
1answer
102 views

Error:Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.4.1.v20121003-ad44345): org.eclipse.persistence.exceptions.DatabaseException

I am getting this error because of primary key constraint violation my question is how can i catch all these exceptions . HTTP ERROR 500 Problem accessing /persist_role_servlet. Reason: Exception ...
0
votes
1answer
40 views

GAE, JPA, XG-transactions, too many entity groups exception

I know there is limit of 5 entity groups in XG-transaction on GAE but I think I am using only 3 groups(Commodity, Category, CommodityCategory) in one transaction and still getting this exception: ...
0
votes
1answer
47 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>() { ...
0
votes
1answer
29 views

Are generated id's unique per entity or for my app's complete datastore?

I'm using @GeneratedValue(strategy = GenerationType.IDENTITY) in my JPA Entities to let Google AppEngine generate id's for my entities. Now I wonder if the generated a unique per entity or for my ...
0
votes
1answer
106 views

Error:The import com.google.appengine.api.datastore cannot be resolved JPA GAE GWT

Error in Development Mode [ERROR] [cbd] - Line 15: The import com.google.appengine.api.datastore cannot be resolved User.java @Entity public class User implements Serializable { ...
0
votes
1answer
52 views

Google App Engine - Update JPA 1 to JPA 2

I want to update my GAE web app to use JPA 2.0. From the doc here, it says that I have to copy the content of appengine-java-sdk/lib/opt/user/datanucleus/v2/ to lib folder of the project. This are ...
0
votes
1answer
29 views

Entity not queried immediately after commit in data nucleus JPA

I am using Data Nucleus JPA for persistence in my GWT application. my persist API in Entity looks like this: EntityManager em = EMF.getEM(); try { em.getTransaction().begin(); ...
0
votes
0answers
51 views

Google App Engine, JPA, Java Server Faces Uncaught exception from servlet java.lang.ExceptionInInitializerError

I'm using GoogleAppEngine with JPA, Java Server Faces I have a EntityManager creating class: public class EMFService { private static final EntityManagerFactory emfInstance = Persistence ...
0
votes
0answers
41 views

Concurrent Modification - JPA AppEngine

Im using Java and JPA 1 in my Google App Engine web app. I have this problem with Caused by: javax.transaction.xa.XAException: Concurrent Modification Profile and ViewedProfile with corresponding ...
1
vote
1answer
90 views

Why does Persistence.createEntityManagerFactory(“transactions-optional”) errors when appengine is deployed

I have created an appengine which runs fine and returns records from my Google cloud SQL db in debug mode. When I deploy the appegine and run the endpoint it errors. And the error I get in the ...
0
votes
2answers
78 views

GAE jpa database model example

I am totally new at this, I am sorry if it is stupid question. I am trying to design database model for Google App Engine in JPA, but I am unable to get it right. When I find the way I can't get ...
1
vote
0answers
61 views

Google App Engine JPA multi level parent child relationship

I am using GAE JPA. The relationship I have is as below: DummyParent has n users and each user has n items. DummyParent --> User --> Item When persisting DummyParent only with user and without item ...
0
votes
1answer
77 views

Google App Engine JPA getting com.google.appengine.datanucleus.EntityUtils$ChildWithoutParentException

Update: I found out the problem in my case is that I am generating the FbUser primary key by myself using keyfactory.createKey() method. If I change it to auto generate it works fine. But the problem ...
0
votes
1answer
53 views

Required entities listing in persistence.xml on GAE?

I'm developing an application that uses GAE, Guice, JPA 2.0 and Jersey. I want to get rid of adding each entity class as a <class> element in my persistence.xml. Answers for this question talk ...
0
votes
1answer
26 views

IN statment in JPQL with GAE

I try to use JPA with GAE, and i have next problem: when I perform this query: select x From Advert x where x.advertType in (15) or select x From Advert x where x.advertType in (20) Entity ...
0
votes
0answers
43 views

GAE+JPA: Transaction not working on Production

i got strange thing here. I use JPA for CRUD process in datastore Google App Engine. i use transaction for edit and deleting some entity, but it works well on my development machine but its not ...
0
votes
1answer
49 views

Assigning String as Google App Engine Entity Key

I searched a lot. Still I am not able to understand how to assign a String to Google App Engine Entity class id(Key). So I have: Key id; And setId(String id) { // I know that here I can ...
0
votes
1answer
38 views

Equivalent of a repeated NDB StructuredProperty in JPA/JDO on Google App Engine

A list of StructuredProperties in NDB is modelled by a number of repeated properties, one repeated property per property of the StructuredProperty's model class. (See here: ...
0
votes
1answer
81 views

Google app engine JPA onetomany relationship add fail with IllegalArgumentException: String over 500 charcters

It was a old project on GAE one year ago. It works pretty well at that time. Recently I tried to work on this project again, but it doesn't work well now. I figured out what the problem is, but I ...
1
vote
1answer
568 views

GWT + Appengine + JPA + Eclipse + Maven: How to get them to work together

I have a project where I want to use the eclipse GWT tools (dev mode and debugger) to interact with the GWT/Appengine/Maven application I am writing. I have things in a somewhat working order but ...
0
votes
1answer
169 views

JPA on Google App Engine: When calling persist(…), does it always happen in a transaction?

In my application I am persisting an entity that has a number of unowned children. It seems that the call to persist which does the persisting of the entity and all children happens inside a ...
1
vote
2answers
134 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
106 views

“Id cannot be zero” - GoogleJsonResponseException 400 Bad Request

I seem to be getting an error when trying to retrieve list using endpoint in GAE. The error is as follow: 04-08 01:01:30.145: I/System.out(14650): ...
0
votes
1answer
43 views

GAE datastore queries sometimes not working after changing entity

I'm trying to figure out an issue that I'm seeing. I'm noticing that when I change an entity object definition by adding a new field for instance, sometimes I no longer can get results from previous ...
2
votes
2answers
231 views

Datanucleus warning: Class was specified in persistence-unit but not annotated, so ignoring

When starting up my app I see for every class this warning: WARN [DataNucleus.MetaData] - Class com.mycomp.MyClass was specified in persistence-unit myPersistenceUnit but not annotated, so ignoring ...
0
votes
1answer
42 views

ClassCastException when executing SELECT query

Currently I upload a CSV file which contains the following columns to the Google App Engine datastore: id, roleName, eggName, highestAllTimePrice, lowestAllTimePrice, averagePrice And the result of ...
0
votes
1answer
149 views

using google app engine with JPA and cloud sql not returning any records using endpoints

I have an Android project and an app engine connected project. I am using the following: JPA v2, App Engine 1.7.6, Java 1.7 compiler, Eclipse 4.2 Juno, EclipseLink 2.4.x I am using Cloud sql db. I am ...
0
votes
2answers
96 views

Entity Groups, JPA and the one write per second limit (app engine)

I have two entities, parent and child, that have a OneToMany relationship. The parent has an @Owned annotation for the child class. There is no relationship back. (from child to parent) @Entity ...
0
votes
1answer
21 views

Why does the OnPostLoad not fire in AppEngine (JPA 1.0)

I've attached the javax.persistence.PostLoad annotation to my method private void onPostLoad() in a class annotated with javax.persistence.Entity in my Google AppEngine project using JPA 1.0 (I've ...
1
vote
1answer
210 views

What is the Best implementation of CRUD with JSF primefaces and Google App Engine Datastore

I have tried creating a CRUD application JSF primefaces, GAE and JPA. I have also tried it using standard GQL. But i still have not figured out the best way to go about it. Especially when doing edit ...
0
votes
0answers
91 views

Google app engine error “Could not change permissions on the driver file” in eclipse

I am just getting the hang of using GAE with Android client app. I created the app engine application by using the generate a backend option on my existing Android client app. I have used JPA in the ...
0
votes
0answers
200 views

From Hibernate (JPA) + Tomcat to DataNucleus (JPA) + GAE: What changes are required in my models to work?

I have a fully functional web application that uses GWT (2.5.0), Hibernate (with JPA flavor) on Tomcat 6. I now want to convert this application to run on the Google App Engine (GAE) (I have 1.7.6). ...
1
vote
1answer
57 views

GAE JPA query with Ancestor

I'm trying to figure out what's the proper way to have a jpa query with ancestor on GAE. There are two class: book and publisher; Book has one publisher but publisher has multiple books. here is the ...
1
vote
0answers
246 views

Google App Engine - DataNucleus JPA - One To Many - Parent/Child - EntityManager.Persist - IllegalArgumentException: out of field index :-1

My first post on SO - Hurray! I am trying to create a Java REST service on Google app engine using their data store. I've got the service up and running & I am able to store single entities just ...
1
vote
1answer
126 views

JPA + GAE -> insert not immediately update datastore

i trying develop using : Google App Engine Data Store JPA Spring Framework I made a page for listing customer. And below that list i made a form to insert new Customer. Customer List ...
0
votes
3answers
112 views

Portable JDO/JPA Design for App Engine Datastore and Relational Database

I'm working on a project that need to run on App Engine and other Java Application Server. In App Engine we use datastore, and in other environment we will use traditional relational database (mostly ...
0
votes
1answer
62 views

Google App Engine: Storing Data & querying it

I'm wondering what the best way to store data is for my situation. I want to store a list of properties, like phone numbers, for one person. For example: name: John Doe numbers: 0998234, 23443145, ...
0
votes
1answer
477 views

No persistence providers available for “transactions-optional” after trying the following discovered implementations:

I am trying to create a Google App Engine - GAE with JPA 2.0, I have followed all I need to, putting the correct jars in classpath and making sure my Entities are enhanced. But I am having problems ...
1
vote
1answer
321 views

Google App Engine 1.7.5 - org.datanucleus.exceptions.ClassNotResolvedException

I created a sample GWT app with Google app engine -GAE, I created an entity and persisted it on the service layer, works OK, data stored. So I started adding widgets and more classes, on my service ...
1
vote
1answer
83 views

Why does this JPA code not update entity in AppEngine local datastore?

So I have the follow entity with the following code to create and update the object. The resulting data after calling the method is that the field Value has the value of 1 in the Datastore running at ...
0
votes
2answers
228 views

How do I setup a ManyToOne relationship using JPA with AppEngine?

I've been trying to get a relationship working with 2 entities in AppEngine, using JPA, and am currently running into this error: java.io.IOException: ...

1 2 3 4 5