Tagged Questions
0
votes
1answer
36 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
50 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
0answers
41 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
0answers
37 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
71 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
95 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 ...
0
votes
3answers
95 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
56 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
2answers
97 views
JPA criteria with datastore in google app engine
Suppose I have 2 JPA classes which model 2 entities in datastore (Google app engine) like these:
@Entity
public class Clazz {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Key ...
0
votes
1answer
37 views
org.datanucleus.store.query.QueryCompilerSyntaxException: Identifier expected at character 12 in “u.username== value”
org.datanucleus.store.query.QueryCompilerSyntaxException: Identifier expected at character 12 in "u.username== value"
here is the query I'm trying to Execute :
try{
Query ...
2
votes
0answers
93 views
Million User Fanout in Google App Engine using JPA
I'm trying to figure out the million fanout problem for GAE using JPA. If I understand things correctly I should have the following entities for something like Twitter (just an example):
public User ...
1
vote
2answers
192 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
121 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;
...
0
votes
1answer
117 views
Connecting AppEngine Datastore and Search API
I wonder what the best way is to connect the Datastore and the Search API.
What I'm looking for is whenever I create some entity (e.g. a product) that this product will be added to a search index. On ...
0
votes
2answers
296 views
GAE Datastore generate String key with JPA
Since it isn't possible to use only Long Ids I am trying to use the generated String keys. I have three Classes User, Topic, Comments with User - 1:n - Topic - 1:n -Comments.
Class Comment:
@Entity
...
0
votes
2answers
114 views
Datastore callbacks are not called in Google Application Engine
I have a simple GAE application using JPA and eclipse plugin for GAE (sdk version 1.7.2).
I only have one simple entity mapped wit 2 properties : 1 Key key ; and one String name.
I have created ...
1
vote
1answer
162 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
162 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 ...
1
vote
1answer
252 views
GAE Datastore with GWT, making more friendly/smaller keys
I am currently working with GWT, GAE and using JPA as my ORM. I have an issue where the keys that GAE is generating are too large reasonably to be used on a mobile device with RequestFactory. The ...
0
votes
1answer
45 views
Searching Entity in AppEngine with Optional Property
Im using JPA in Google App Engine.
I have a profile entity with many properties, (e.g. from name to hobbies). I allow users to search for the profile entity. Properties for searching are optional. If ...
0
votes
1answer
226 views
Filtering by date (ignoring time-of-day)
I'm not getting date filter using JPA.
For example my database table data are using this date format:
id=22001 2012-05-24 01:18:44.459000 -3.72562176 -38.55413138
id=22002 2012-05-24 ...
0
votes
1answer
188 views
Google AppEngine: understanding datastore transactions
I've recently faced this annoying problem with GAE inability to handle more than one entity group in a single transaction. Java pseudo-code below:
public void doit(EntityManager em, long id)
{
...
1
vote
0answers
258 views
Scala with JPA and GAE
I want to write my dtos with scala, but it doesn't seem to work. When I want to depoly web app on the local webserver I get this message:
Caused by: org.datanucleus.metadata.InvalidMetaDataException: ...
1
vote
2answers
161 views
Cheapest way to retrieve/record multiple entities on GAE
I have this specific case that bring me some doubts:
My class A have a one-to-many relationship with B:
A 1----->* B
Which, as far as I know, makes their related instances belong to the same ...
1
vote
0answers
140 views
How to set Id field and query it in GAE datestore via JPA
I want to set the Id field with type of Long. However, when I query it, I got this exeception:
Cannot access field id on type
and this is my annotation for this query
@NamedQuery(name = ...
0
votes
4answers
125 views
Is there a “clean” solution for the “Object Manager has been closed” error (JPA)?
I'm using JPA (not JDO) on Google App Engine and this is a typical example of my service method:
@Autowired
EntityManagerFactory entityManagerFactory;
public Collection<Message> getAll() {
...
3
votes
1answer
333 views
GAE/J - JPA Error - Type (“”) is not that of an entity but needs to be for this operation
I'm a little green with JPA but I did some searching and couldn't find this error code so I'll post it here.
I'm trying to persist this class:
@Entity(name = "UserBasket")
public class UserBasket ...
0
votes
3answers
464 views
JPA error from GAE data store
I'm trying to have my GAE app pull some records from the Datastore but keep getting this:
javax.persistence.PersistenceException: Class PersistableItem for query has not been resolved. Check the ...
2
votes
2answers
899 views
Examples of JPA joins on Google App Engine
Are there any good examples for using JPA joins using Google App engine? I saw an example on this site, but it seems old - are there any improvements on it? The GAE doc pages only detail joins using ...
0
votes
1answer
217 views
How can i clear my Google appengine Datastore using JPA QUERY?
Im trying to clear my datastore, dynamically in a servlet, using Jquery.
but i cant find any API for clear all tables automatically, so im trying to erase all rows from all tables like this:
...
0
votes
1answer
332 views
JPA : Many to many relationship in Google App
I'm beginner of Google app. I want to know how to code many to many relationship for JPA in Google app. Could u give me the example? I'm trying to connect Order, Order_Item and Product.
0
votes
3answers
438 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>
...
0
votes
2answers
204 views
Limit on Google App Engine Entities' Collection attributes
Okay, so as many of you may know, one can define entities with attributes like
List<String> lotsOStrings;
or in general
Collection<T> stuff;
My question is, if I dont index ...
0
votes
0answers
318 views
JPA Apps Engine what type of primary key for relationship
Hello I migrate my application on GAE I have one question:
Is it possible to create relationship with JPA @OneToMany and @ManyToOne and with primary Key of type long?
Its work with Google Primary Key ...
2
votes
2answers
531 views
Does GAE works only with BigTable (or also other database)?
I want to do a quite simple application on GAE with SPRING ROO.
I do not understand the difference between Hibernate and JPA (persistance ?) but I would like to know what is recommended for my ...
2
votes
2answers
2k views
How do you use list properties in Google App Engine datastore in Java?
An object to be placed in the datastore will have a set of tags.
public class Model
{
List<String> tagList
...
}
In Python, the Google App Engine has the notion of list properties. ...
6
votes
1answer
436 views
JPA and the Decorator Pattern
I am trying to create an application which will be partially dependent on the Census Department TIGER/Lines data Shapefiles, which have a record layout defined here:
...
1
vote
2answers
203 views
GAE - different data storage access options - Which one to use?
As far as I know, there are the following data access storage options:
JDO
JPA
Entities, Properties, and Keys
Which one are you using and why? I am new to all of these and do not know which one is ...
4
votes
1answer
990 views
Tree (Hierarchical) Structure in Hibernate and GAE
I want to model a hierarchical data in Hibernate (and also in GAE).
The entity structure is similar to as below:
class Node<T>
{
Long id;
T nodeValue;
Node<T> parent;
...
1
vote
1answer
184 views
can I have both JDO and JPA annotations at the same time?
What will actually happen if I provide a full set of annotations for JPA and JDO on data objects?
Can I then switch between them without touching the code? how can I switch what to aplay external ...
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 ...
3
votes
2answers
603 views
Are @ManyToMany relationships not allowed in GAE?
My understanding is that with GAE JPA support I cannot:
@ManyToMany
private Set<SSUser> contacts;
protected SSUser(){}
public SSUser(final String userId, final String emailId){
...
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 ...
6
votes
1answer
2k views
Google App Engine - DELETE JPQL Query and Cascading
I noticed that the children of PersistentUser are not deleted when using the JPQL query below. However, the children are deleted if I perform an entityManager.remove(object). Is this expected? Why ...
3
votes
2answers
920 views
unique constraints-Google app engine [duplicate]
Possible Duplicate:
Unique Constraint At Data Level in GAE
Does the Google App engine datastore support unique constraints?
1
vote
2answers
243 views
jpa-Google app engine
I had created entity in google app engie datastore using JPA. I set the id as follows
@Id
@GeneratedValue(strategy=GenerationType.SEQUENCE)
private Long s;
After i deployed my applicaiton it give ...
4
votes
1answer
124 views
How the existing data to be if entity structure modified or deleted on GAE?
GAE recommends using JDO/JPA.
But I have serious question about using OODB like them.
JDO based on user's class structure. And data structure should be modified continually as service advances. So,
...
2
votes
2answers
2k views
Loading child entities with JPA on Google App Engine
I am not able to get child entities to load once they are persisted on Google App Engine. I am certain that they are saving because I can see them in the datastore. For example if I have the following ...
0
votes
5answers
2k views
What datatypes are supported by Google App Engine's datastore?
I know how to table in google BigTable.I have one doubt regarding this.what are all the datatype supported by google BigTable.
Thanks in advance
