0
votes
3answers
14 views
persisting persistence; or moving legacy webapp to non-relational store
Suppose you have a huge app with a data access layer bound to SQL
You want to provide other non-sql DAL, for instance a GoogleAppEngine instance or XML-based backup.
How would you …
1
vote
3answers
55 views
Code sharing in GWT app engine
I have an Employee class
@PersistenceCapable(identityType = IdentityType.APPLICATION)
public class Employee {
@PrimaryKey
@Persistent(valueStrategy = IdGenera …
0
votes
2answers
52 views
App engine many-to-many data modelling
I have a question regarding how to model a many-to-many relationship in App Engine:
A Blogentry can have many tags, a tag can apply to many blog entries.
I see a couple of scenar …
0
votes
1answer
30 views
Swap two elements in a list using JDO on Google Appengine
I have a TestEntity that has an ArrayList of ChildEntities. They are joined in a owned relationship. I want to
get the Entity from the datastore, update an int field in the child …
0
votes
1answer
36 views
Problem with persisting data in Google Application Engine
Hi, we are having a hard time persisting data in our google app project, we have the classes "Customer" "Reservation" and "Room".
Our goal is to map a relation between these, wit …
1
vote
3answers
210 views
Loading a collection of Enums with Google app engine datastore
I am using the Goole app engine datastore with Java and trying to load an Object with a List of Enums. Every time I load the object the List is null. The object is
@PersistenceCap …
0
votes
2answers
46 views
Delete an entity by key without fetching it first in app engine (using JDO)
Is there a way to delete an entity without having to fetch it from the datastore first? I am assuming I already have the key or id for the entity.
I'm thinking of something like d …
0
votes
2answers
34 views
Deleting from a Set in Google App Engine is not being persisted
I see a similar question in Problems while saving a pre-persisted object in Google App Engine (Java), and indeed I was not calling close() on my persistence manager. However, I am …
0
votes
1answer
95 views
Error saving image into Google App Engine/Java
I'm trying to make following JDO entity in GAE/J (I'm using Gilead).
package test.domains;
import java.io.Serializable;
import javax.jdo.annotations.IdGeneratorStrategy;
import …
0
votes
1answer
67 views
JDO, GAE: Load object group by child’s key
I have owned one-to-many relationship between two objects:
@PersistenceCapable(identityType = IdentityType.APPLICATION)
public class AccessInfo {
@PrimaryKey
@Persistent( …
0
votes
3answers
80 views
GWT + JDO + ArrayList
Hi,
I'm getting a Null ArrayList in a program i'm developing. For testing purposes I created this really small example that still has the same problem. I already tried diferent Pr …
-1
votes
0answers
53 views
Is it possible to load child object from JDO? (Java, Google App Engine)
I persist in storage an object with a child inside it. There is an "Owned One-to-One Relationships" (http://code.google.com/appengine/docs/java/datastore/relationships.html#Owned%5 …
2
votes
1answer
60 views
Google App Engine, JDO, and equals/hashCode
I've got an app in Google App Engine that was working fine. I realized that one on of my JDO-enhanced objects that I forgot to implement equals and hashCode (I need to use the obje …
0
votes
1answer
73 views
App Engine Class With Children Of The Same Type
I'm trying to save a tree structure in app engine. My class has a parent and a list of children of the same type. Everything works until I add the children property. There are n …
4
votes
5answers
591 views
JDO vs JPA for Java on Google App Engine
I want to develop my project on Google App Engine with Struts2. For the database I have two options JPA and JDO. Will you guys please suggest me on it? Both are new for me and I ne …
