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

0
votes
2answers
315 views

Many-to-one unidirectional relation in DataNucleus

For the context, client-side I use the MVP pattern, so the view with the One list knows only the ID, and when my new Many is received on the server, I want to be able to just update the One's foreign ...
1
vote
0answers
58 views

Datanucleus gae.pk-id not populated on makePersistent

When I make a class that defines both "gae.encoded-pk" and "gae.pk-id" persistent, the encoded-pk is updated, but the id remains null. There's no exception being thrown and the code is a straight copy ...
1
vote
0answers
34 views

GAE/J Datestore OneToMany design issue

I have two classes, User and Topic which are building a OnetoMany relationship. Now I have written a Test where I save a new Topic object, check if it's saved and delete it afterwards. The problem ...
0
votes
1answer
99 views

AppEngine JDO Query filter “property has ancestor”

I have an entity of kind 'ContainableObject' stored which has an entity of kind 'Container' as one of its properties. class ContainableObject { @Persistent @Unowned private Container ...
1
vote
2answers
316 views

Persistent list in JDO (Google App Engine)

I`m developing the server side for a mobile app with Google App Engine and JDO in Java, and I have some problems saving objects list in the database. I have a one-to-many relationship between ...
-2
votes
1answer
208 views

JDO basics: List or array won't retrieve or return with GWT RPC

I've been using Objectify up till now, but now I have to deal with some code using JDO. I'm having problems with basic stuff that is easy with Objectify, specifically: if an object has either a List ...
0
votes
2answers
116 views

GAE, JDO: Add, Move & Delete entities of ordered list

Hi i have a parent entity say A which has list of child entities say List<B> children. I need the order of child entities to be maintained since its important for my application. The way i ...
0
votes
1answer
77 views

adding indexes to dependent maps in datanucleus

I have a dependent map on my persistant class... I was thinking the indexed="true" would cause DN to add an index to the key and value columns on the generated table, but it seems completely ignored. ...
0
votes
1answer
50 views

Enable compression for table

How can we enable compression for a specific table using jdo and datanucleus in hbase ?
1
vote
2answers
376 views

Substring searching of text in Google App Engine Datastore entity

I have been working on with Google App Engine. I have found problem with searching sub strings and few other operations. The javax.jdo.Query provides options to set filter as per the need. There are ...
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 ...
1
vote
1answer
104 views

Is it possible to refer to the outer query form a subquery filter string?

From the subquery filter I refer to the outer query this way: type.maxZoneTests > this.fromZone Query freeZoneSubquery = pm.newQuery(Zone.class, sb.toString()); ...
0
votes
1answer
95 views

NullPointerException in the DataNucleus loadObjectById

i am using JDO 3.x and DataNucleus 3.1.0 and have strong problems with reliability of the code. especially the important method loadObjectById(type,key) is sometimes working sometimes not! i am not ...
0
votes
1answer
187 views

ArrayList of super class type

I use mongodb-datanucleus in my project. I configure my jdoconfig.xml as follow : <persistence-manager-factory name="mongodb-factory"> <property ...
0
votes
2answers
116 views

Mix JDO (DataNucleus) and JPA (Hibernate) objects in one transaction

Is this going to be a problem? I have a legacy system which uses javax.jdo API and XML mapping to handle writing/reading it's objects from the DB. I also have some code that extends this system, ...
0
votes
1answer
124 views

Default Fetch group in MongoDB - dataneucleus

I use datanucleus and MongoDB for storing my objects. I detected problems with the lazy loading. One on My class is : public class Member implements Serializable{ private static ...
0
votes
0answers
179 views

unable persist data with jdo gwt 2.5.rc2 RPC + gae 1.7.2.1

This is my first application with jdo and appengine, When ever I try to persist data I am getting the exception. com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public abstract ...
0
votes
1answer
627 views

Querying JDO entity not working in GAE [closed]

Im trying to use the datastore in google app engine. I'm able to make an object persistent and can retrieve it by id. But I can't query it. This is my entity: package my.company.domain; import ...
1
vote
2answers
352 views

GAE JDO persistencemanager GetObjectById returns No such object?

I've been trying to get my GAE code running. I have problem retrieving Users with encodedKey: I have this User Data Manager class that manage all my CRUD transactions using singleton PMF. I have ...
0
votes
1answer
59 views

Update document in Mongodb-dataneucleus

I've a web project that includes java class with JDO annotation. My database is MongoDB. I use datanucleus in my project. To persist my java object in my database, I use this code : ListAcc list ...
0
votes
1answer
65 views

Sonar and Datanucleus

What are the best practices if we want sonar to ignore the critical violations related to "Performance - Private method is never called ยป Private method xxx.xxx.xxx.jdoXXX... is never called" ...
1
vote
0answers
375 views

JDO: Exception when trying to detach objects

Im trying to use the datastore in google app engine. I'm able to make an object persistent and can retrieve it by id. But I can't query it. This is my entity: package my.company.domain; import ...
0
votes
0answers
51 views

project in jdo using ojb

How to build a project in jdo using ojb? How to setup the project? what are the jar files that are needed? I have an XML file, an interface and an application class as follows, but it is giving ...
0
votes
1answer
89 views

How to map integer database type(s) to java boolean?

I'm already applying that and it works as if the integer value from the database is 0, the java boolean variable becomes false and vice versa. But I'm wondering if it's possible to have it the other ...
0
votes
1answer
173 views

Google App Engine JDO - Query result sets are not modifiable

Exception: Query result sets are not modifiable i saw a similar issue here but it did not answer my question so i decided to start a new one. I am trying to work around the consistently getting ...
1
vote
1answer
172 views

How to persist classes to database using JDO using mysql , got an error

I'm trying to generate tables from persisted classes using JDO 3.1 API. This is my code: class product @PersistenceCapable public class Product{ @PrimaryKey ...
0
votes
1answer
196 views

JDO - 1-N unidirectional relation using annotations - Column name?

I'm using JDO (with Datanucleus implementation) for a new project for the first time, and I'm having troubles defining 1-N unidirectional owned relation using JDO annotations. What I need is to have a ...
0
votes
2answers
197 views

Google app engine JDO delayed data persistence

All, I have a code that writes something in the data store and immediately after I make a call to retrieve the data I just wrote to data store. My 2nd call always fails! However if I make the call ...
1
vote
0answers
143 views

org.datanucleus.transaction.Transaction rollback on Google App Engine

I am facing a serious error in our application on Google App Engine. When i do this: CompanyUser.validate("email", email); CompanyUser.validate("password", password, password); ...
0
votes
1answer
140 views

Map attribute in Datanucleus JDO

I have class which has Map, but when I try to presist this entity, throws null pointer exception. What could be wrong in my code/settings? My class: @PersistenceCapable(detachable="true") public ...
0
votes
0answers
81 views

ArrayList field not fetched by default with JDO

I'm writing my first App Engine project (with Java) and have run into an issue with retrieving a persisted field. I'm using JDO to access the datastore. The field is an ArrayList. The field persists ...
1
vote
4answers
104 views

How to update an arbitrary field in a POJO?

I have a POJO called MyClass. MyClass has a 100 getters and setters (for example) I create two instances. Instance A and Instance B. A user somehow changes the value of any arbitrary field on ...
2
votes
3answers
2k views

How to solve validation error on xsi:noNamespaceSchemaLocation in jdoconfig.xml

Since I updated today to GAE 1.7.2.1, I'm having validation errors in eclipse in all my jdoconfig.xml files. I have the default jdoconfig.xml content : [...] <jdoconfig ...
0
votes
1answer
180 views

App Engine JDO Lazy Loading Objects by Stored Key

So I am not having any luck with loading the venue and artist object when I load my even object. Basically when I create an event, I load the specific artist and specific venue and save the key in ...
1
vote
2answers
258 views

How generic DAO can return same type for all different DAO implementations?

I'm creating generic DAO for my DataNucleus JDO DAOs. Generic DAO will do get, update, delete, create operations and some other generic operations, so those implementations can be just extended in ...
1
vote
0answers
25 views

Wondering if JDO DataNucleus supports SSL for LDAP?

Generally, we pass our custom socket factory through properties while initializing ldap context to get ssl connection. Wondering if the same is possible through JDO while obtaining persistence manager ...
0
votes
2answers
281 views

Stack overflow accessing GAE entity with bidirectional unowned one-to-one relationship using JDO

I am writing a Java application for Google App Engine. I have two entities which I need to model as a bidirectional unowned one-to-one relationship: The first object 'ContainableObject' ...
0
votes
1answer
444 views

DataNucleus, HBase, JDO: “A property named javax.jdo.PersistenceManagerFactoryClass must be specified”

I'm getting an exception ("A property named javax.jdo.PersistenceManagerFactoryClass must be specified") when trying to follow the DataNucleus HBase tutorial. My datanucleus.properties file (below) ...
0
votes
1answer
70 views

Can I stream query results using JDO?

I want to export all Objects (rows) in my database. They don't fit into memory at once, so I want to stream them instead of fetching all at once. Which approach has a low memory footprint? Does JDO ...
1
vote
1answer
142 views

JDO(DataNucleus) collection members are not deleted

I'm using GAE 1.7.0 w/ JDO(DataNucleus). When I persist a class with a collection attribute, removed collection members are not removed from the datastore. I remove the collection members from a ...
0
votes
0answers
81 views

JDO contains filter giving illegal argument exception

I can't get JDO contains to work, but I can't get a good explanation on the exception on google. Here's the code: Query q = pm.newQuery(SubjectEvent.class); ...
1
vote
1answer
233 views

How to query the datastore to get child objects and compare their properties using Java?

I am implementing a project on the google app engine. I would like to query the datastore to refer to the child object's property and use it to identify the parent object. Think of these as the ...
0
votes
1answer
227 views

could not persist data of format map<string,Arraylist> in jdo

iam trying to persist a Hashmap data in JDO. initially i created a Hashmap like Map<Integer,String> dat=new HashMap<Integer,String>(); and this worked perfectly and i was able to save ...
2
votes
1answer
96 views

JDO: How to make a detached object transient?

I'm using DataNucleus 2 JDO implementation. I have a detached object that i must attach, BUT i don't want to attach ALL the fields (in this case, a collection) public class Obj { private String ...
1
vote
2answers
162 views

Is this evidence of a GAE memory leak?

Depending on the setting of autocreateDatastoreTxns, I get a memory leak, with one instance of each of the classes below created for each query (a read). i.e. 100 queries creates 100 instances of ...
0
votes
0answers
154 views

Strange NullPointerException thrown by JDO PersistenceManager's getObjectById method

Here's an interesting situation I have run into. I have the following JDO persistable class. @PersistenceCapable(detachable="true") public class MyDataType implements Serializable { @PrimaryKey ...
0
votes
2answers
117 views

makePersistent for owned one-to-many rs. not working reliably in JDO

the makePersistent method of the PersistenceManager is not working reliably. one and the same junit-test is working and after a while its failing again?! i have an object that includes a collection of ...
0
votes
0answers
28 views

Add hashing images in JDO

I'll put pictures in JDO entity Image package image; //Import need modules import javax.jdo.annotations.IdGeneratorStrategy; import javax.jdo.annotations.PersistenceCapable; import ...
1
vote
0answers
110 views

How to write a JDO query to check multiple object attributes with one string parameter?

My Owner class has 6 string attributes. I want to write a JDO query which should check a string with those all 6 attributes of Owner class and if any of those 6 attribute matches then that owner ...
2
votes
0answers
111 views

JDOUserException when persisting object: supposedly incorrect type is same as expected type

Trying to persist an object results in this exception being thrown. It complains about an incorrect type but then expects that same type. The exception started appearing after renaming the project ...

1 2 3 4 5 17