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 ...

learn more… | top users | synonyms

118
votes
11answers
80k 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 ...
56
votes
12answers
17k 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 ...
29
votes
5answers
12k 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
20
votes
6answers
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 ...
17
votes
8answers
6k 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 ...
14
votes
6answers
5k 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 ...
11
votes
1answer
585 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
5k 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 ...
8
votes
1answer
2k views

Validating jdoconfig with incorrect url

I am using jdo and configuring the persistence manager with jdoconfig.xml However everywhere I find documentation about jdoconfig.xml it states that http://java.sun.com/xml/ns/jdo/jdoconfig should be ...
8
votes
0answers
194 views

Committed JDO writes do not apply on local GAE HRD, or possibly reused transaction

I'm using JDO 2.3 on app engine. I was using the Master/Slave datastore for local testing and recently switched over to using the HRD datastore for local testing, and parts of my app are breaking ...
6
votes
2answers
1k 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 ...
6
votes
1answer
2k 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 ...
6
votes
2answers
241 views

GWT Editors and GAE Datastore

GWT has an Editor Framework, which, after a cursory inspection, looks an awful lot like how Spring MVC/Forms handles data binding between backend data objects and frontend UI components. I am writing ...
5
votes
3answers
5k 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 ...
5
votes
1answer
3k 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 ...
5
votes
1answer
84 views

Unsure if I understand TransactionAwarePersistenceManagerFactoryProxy

I am trying to use the org.springframework.orm.jdo.TransactionAwarePersistenceManagerFactoryProxy in my Spring project, but I am not sure how to use it or whether it's exactly what I am looking for. I ...
5
votes
2answers
978 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 ...
5
votes
2answers
231 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
3answers
1k 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 ...
5
votes
2answers
327 views

How can I reduce Google App Engine datastore latency?

Through appstats, I can see that my datastore queries are taking about 125ms (api and cpu combined), but often there are long latencies (e.g. upto 12000ms) before the queries are executed. I can see ...
5
votes
1answer
194 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
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 ...
4
votes
1answer
580 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
3k 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 = ...
4
votes
2answers
1k 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
3answers
2k 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: ...
4
votes
3answers
256 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 ...
4
votes
2answers
200 views

What is DAO in context of GAE, Java, JDO etc?

I've just started writing GAE web applications in Java so I'm kind of new to all this stuff. I use JDO for storing data. I'm reading a lot of online materials (forums, tutorials...) and I see DAO ...
4
votes
5answers
4k views

Difference between JPA and JDO?

want to develop my project on Google App Engine .I want to use google big table as database. For the database I have two options JPA and JDO. Will you guys please suggest me on it? Both are new for me ...
4
votes
1answer
528 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
4k 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
2answers
730 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
2answers
798 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
605 views

JDO on GoogleAppEngine: How to count and group with BigTable

I need to collect some statistics on my entities in the datastore. As an example, I need to know how many objects of a kind I have, how many objects with some properties setted to particular values, ...
4
votes
2answers
2k 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 ...
4
votes
1answer
335 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 { ...
4
votes
2answers
182 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 ...
4
votes
1answer
1k 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: ...
4
votes
1answer
241 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
661 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
974 views

How do I annotate a collection of embedded objects in Google App Engine (Java)?

Is it possible to store a collection of embedded classes in Google App Engine (Java)? If so, how would I annotate it? This is my class: @PersistenceCapable public class Employee { @PrimaryKey ...
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, ...
4
votes
1answer
152 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
240 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
4answers
613 views

How to delete a column (attribute) from a GAE datastore?

I have a persistent class stored in a GAE datastore. I have removed one of the attributes from the class. The new records in this table show a value <none> for the removed attribute. But is there a ...
3
votes
2answers
2k views

Unable to persist objects in GAE JDO

I am completely fresh to both JDO and GAE, and have been struggling to get my data layer to persist any code at all! The issues I am facing may be very simple, but I just cant seem to find any a way ...
3
votes
1answer
3k views

Problem with persisting data in Google Application Engine

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, with a one-to-many relation ...
3
votes
2answers
2k views

Many to many relationship in java google ap engine

how would i go about creating a many-many relationship among data objects in google app engine (using jdo) The app engine page talks about 1-many and 1-1 but not many-many. Any code example will be ...
3
votes
3answers
2k views

JDO Exception: “Query requires 1 parameters, yet 2 values have been provided.”

Despite the fact that my JDO query contains TWO declareParameters statements, the code below produces an error claiming only one parameter is accepted: Query requires 1 parameters, yet 2 values have ...
3
votes
2answers
1k views

Ignore case in JDO query

I would like to select a list of results from a database, but the == operator for JDO queries is case-sensitive. Is there a way to select "USER", "user", and "User" from a table using a single ...

1 2 3 4 5 17