Tagged Questions

Java Data Objects (JDO) is a Java specification for accessing, persisting, and managing data between Java objects / classes and a datastore. Unlike the JPA specification, JDO is applicable to *all* types of datastore, whether it be RDBMS, ODBMS, document-stores, web-datastores, key-based-stores, or indeed anything else. The JDO specification also includes the most complete definition of ORM in any Java persistence specification.

learn more… | top users | synonyms

62
votes
11answers
48k views

Hibernate vs JPA vs JDO - pros and cons of each?

I'm familiar with ORM as a concept, and I've even used nHibernate several years ago for a .NET project; however, I haven't kept up with the topic of ORM in Java and haven't had a chance to use any of ...
34
votes
10answers
11k 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 need to learn them. So ...
26
votes
5answers
9k views

Java AppEngine: JDO or JPA, How to choose?

Pros and Cons of choosing JDO or JPA for a Grails Application that will run on Google AppEngine
17
votes
5answers
3k views

Sending persisted JDO instances over GWT-RPC

I've just started learning Google Web Toolkit and finished writing the Stock Watcher tutorial app. Is my thinking correct that if one wants to persist a business object (like a Stock) using JDO and ...
13
votes
7answers
3k views

Why put a DAO layer over a persistence layer (like JDO or Hibernate)

Data Access Objects (DAOs) are a common design pattern, and recommended by Sun. But the earliest examples of Java DAOs interacted directly with relational databases -- they were, in essence, doing ...
10
votes
1answer
471 views

Why does the Google App Engine documentation emphasize JDO over JPA?

Most of the docs for Google App Engine are written for JDO. Only one page of docs are devoted to using JPA. Is this because JDO is more suited to App Engine or was there some other reason for the ...
8
votes
4answers
4k views

GWT+UIBinder+Gin+Guice+JDO+GAE example

I'm trying to link all this technologies, but there are many isolated examples and I do not have enough experience to link them together so my questions: Whether there is a similar example? Is it ...
7
votes
5answers
2k views

High Level Java Client selection for Apache Cassandra

I got interested in geospatial applications last time and understood their need for flexible data storage solutions regarding partition tolerance. As I found a job advertisement as java developer ...
5
votes
1answer
132 views

Migrating fields in JDO

We are using JDO in one of our projects. This has been running for quite a while and naturally we need to change the model a bit. What is the best practice when migrating fields in entity classes in ...
5
votes
2answers
183 views

Transactions over very very large entity group

I am trying to design a data model which can hold a very large amount of data, does anyone with experience in large volumes of data have any feedback on this, ie: // example only, not meant to ...
5
votes
1answer
603 views

Whats the difference between JPA and JDO specifications?

I have been using Hibernate ORM, which is an implementation of the JPA specification to manage relational data. I have also heard of the JDO specification that supposed to do the same (manage ...
5
votes
3answers
984 views

ClassCastException when trying to add child to parent in owned one to many. (using jdo on google appengine)

I need some help figuring out what I'm doing wrong here. I am trying to master one to many relationships and running into a roadblock. I tried to modify the Employee and ContactInfo example to do one ...
4
votes
2answers
153 views

App-Engine JDO consistent reading not working, maybe caching?

Today it's the first time I'm using GWT and JDO. I am running it with Eclipse in the local debug mode. I do the following thing: public Collection<MyObject> add(MyObject o) { ...
4
votes
2answers
254 views

Why Objectify instead of JDO?

I am approaching to Gwt + Gae world. My essential need is to send over the Gwt-Rpc wire my Entity classes, without duplicating them into DTOs. Objectify promise to do that pretty well. It claims it ...
4
votes
1answer
136 views

What's a more affordable hosting option for a Java/JDO app built on (the formerly free) App Engine? [closed]

Because of the price hike announced yesterday for App Engine, it has gone from being an essentially free hosting option to a potentially unaffordable one. As a result I would like to consider what my ...
4
votes
2answers
352 views

App Engine identifier. Key vs Id

To identify my JDO objects in Google App Engine I use the Key type. It works fine but when I need to pass this through urls it gets sort of long. For example: ...
4
votes
1answer
162 views

JDO best practice: Store objects as a collection under their parent or independently?

I have a User and Transaction class Each Transaction logically belongs to a User. But I may need to query for some subset of Transactions (ex: return all Transactions for User A with ...
4
votes
1answer
344 views

Why get a DeadlineExceededException in MakePersistentAll from app engine data store?

Folks -- I am getting the following exception and can't explain why. The number of objects to persist are usually small (<10), but I get a DeadlineExceededException intermittently when using ...
4
votes
2answers
310 views

Different classloaders cause ClassCastException when persisting data via Spring

I'm creating an MVC Spring webapp. Using: Jetty (servlet container), DataNucleus (dao platform), DB4O (embedded datastore). When I persist an object (done from within a Spring Controller) using JDO ...
4
votes
1answer
76 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, ...
4
votes
1answer
410 views

Google app engine - what is the lifecycle of PersistenceManager?

What is the preferred way of using GAE datastore PersistenceManager for web app? GAE instructions are a bit ambiguous on the matter. Do I instantiate PersistenceManagerFactory for each RPC call, or ...
4
votes
2answers
3k views

Gae Jdo persistance on one-to-many owned relationship with bidirectional navigation

I'm trying to persist a one-to-many owned relationship with bidirectional navigation in gae using jdo. I manually add the Contact to User class, and I would expect that in the end the contact will ...
4
votes
3answers
3k 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 object in a set). So I ...
4
votes
1answer
452 views

JDO for Google App Engine: escaping quotes

How do I escape parameters of queries in JDO (Google App Engine)? For example, how do I make the next snippet safe, if the variable name may contain unsafe chars as single quotes (') ...
4
votes
1answer
2k views

Why am I getting a cast error in my Query using JDO on Google App Engine?

According to the Queries and Indexes doc you can go a query effectively identically (so far as I can tell) to this: PersistenceManager pm = PMF.get().getPersistenceManager(); try { Query q = ...
3
votes
1answer
114 views

Configuring JDO in Spring 3.1?

I used to have all my DAOs extend the JdoDaoSupport class which is now deprecated in Spring 3.1. I've made my own AbstractJdoDao class which wraps the PersistenceManagerFactory and all the DAOs extend ...
3
votes
2answers
159 views

Google App Engine - Data being stored in a weird way

I'm using Java. This is the pure data that gets inserted in the datastore: <p>Something</p>\n<p>That</p>\n<p> </p>\n<p>Should.</p>\n<p> ...
3
votes
2answers
105 views

@Unique doesn't have any effect in DataNucleus w/ NeoDatis

Using JDO / DataNucleus / NeoDatis datastore I added @Unique to a field of a persistable object, however I am allowed to create multiple objects which violate the unique constraint. The docs for ...
3
votes
1answer
89 views

GAE: Child object that is not in the class

I am trying to duplicate the pattern described in Building Scalable, Complex Apps on App Engine. I am having trouble understanding how to tell GAE that Message index is a child of Message. From ...
3
votes
3answers
153 views

Is there a flat files JDO implementation?

I have a simple app I'd like to use JDO. But I don't want to use any DB back, just regular file system. Before jdo, I had this class it serializes it object to a file whereas file name is the "primary ...
3
votes
1answer
285 views

JDO Google App Engine validate user

I've been following the google app engine tutorial and the part that explains JDO is done under the basis of a guestbook. So when they query the persistence (BigTable i believe) they are interested in ...
3
votes
1answer
159 views

Keeping a JDO persistence manager alive instead of closing it?

Does a persistence manager generally need to be closed? Can you just keep one open and re-use it all the time, ie just repeat this pattern: Transaction tx = pm.currentTransaction(); try { ...
3
votes
2answers
115 views

Refactoring packages containing JDO @PersistenceCapable classes in Google App Engine

I have a set of JDO persistence capable classes in packages that need to be refactored. I know if you change the class name then you need to update the "BigTables" objects. However, if I change the ...
3
votes
2answers
81 views

GAE Altering data in your local object store

I have been working on an application using GAE in eclipse and I have a bunch of data objects. Sometimes I need to change their type, ie String -> Text so they can store more data. What is the ...
3
votes
2answers
709 views

How do you make query results available after closing the persistence manager

I am learning GAE and am getting a bit stuck. If I use the following, with a finally to make sure the persistence manager is closed, I get an exception when trying to actually read the Note objects: ...
3
votes
4answers
114 views

Why do my updates not work?

I am new to GAE, and to JDO, I am getting stuck with how to update data. Using the code below, if I do a getAll(), then a get() on an object, then alter an attribute for that object returned by ...
3
votes
2answers
68 views

Where do Entities get saved if you run a GAE project in development mode?

I am running a GWT Web Application project in Eclipse with certain Entities that I make persisent using JDO. Where (on my file system) do these Entities actually get saved if I run the project in ...
3
votes
1answer
367 views

What is the correct approach to using GWT with persistent objects?

I am currently working on a simple web application through Google App engine using GWT. It should be noted that this is my first attempt at such a task. I have run into to following problem/dilema: ...
3
votes
1answer
2k views

Maven building for GoogleAppEngine, forced to include JDO libraries?

I'm trying to build my application for GoogleAppEngine using maven. I've added the following to my pom which should "enhance" my classes after building, as suggested on the DataNucleus documentation ...
3
votes
2answers
1k views

Appengine jdoconfig.xml for local database

Has anyone successfully configured JDO datanucleus default to google app engine to work on a local database? Why am I always getting an error in jdoconfig.xml when I have specified the property ...
3
votes
3answers
973 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 deleteObjectById that ...
3
votes
1answer
225 views

Problems while saving a pre-persisted object in Google App Engine (Java)

I am having problems while saving a pre-persisted JDO object in google-app-engine data store. Basically, in one servlet, I create the object and save it. In another servlet, I read the object, set a ...
3
votes
1answer
859 views

Many-to-Many relationship in DataNucleus (JDO) doesn't persist

I don't manage to persist a many-to-many link with DataNucleus using JDO. I have two classes Book and Shop. This is the orm mapping file: <?xml version="1.0"?> <!DOCTYPE orm PUBLIC ...
3
votes
1answer
2k views

JDO - Updating an Object

i am experimenting with the Google App Engine, and the persist option JDO. I would like to know if it is possible to map a transient object to a persist object? Or something to update the persistent ...
2
votes
1answer
30 views

JDO UnsupportedDatastoreFeatureException on Google App Engine

I am trying to use the get method for Map as described in http://db.apache.org/jdo/jdoql_methods.html on Google App Engine. My definition is as follows: public class FooInfo { ... @Persistent ...
2
votes
1answer
130 views

Google App Engine JDO makePersistent latency

I have a problem with the Google App Engine JDO implementation that I cannot figure out. The documentation ...
2
votes
1answer
52 views

Spring JDO - makePersistent not returning created object

I'm using Spring and JDO connecting to a MySQL database. When I persist an object, I am expecting to see the created object returned by the makePersistent() method. It does return an object, but this ...
2
votes
2answers
58 views

What is the correct way to atomically increment a counter in App Engine?

I am using Java on Google App Engine and I am most familiar with the JDO datastore interface. I am trying to implement a simple download counter which stores its data in the App Engine datastore. I ...
2
votes
1answer
59 views

JDOObjectNotFoundException when trying to get a child object in GAE

I have designed a data model where there are parents and children objects (one to many). First I did all the job manually and stored ID's of parents in children objects to keep the relation. Then I ...
2
votes
1answer
39 views

Set a entity kind name different from a class name

Is there any way how to set a kind name different from a class name used in my Google App Engine? I am using Java and JDO to access a datastore. There a question about the similar issue in Python. ...

1 2 3 4 5 11